Skip to content

babyfish-ct/jimmer-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jimmer Examples

English | 中文

Sub-directories

This is a collection of examples for Jimmer, containing the following 4 sub-directories:

Sub-directory Description
java Examples in Java
kotlin Examples in Kotlin
rest-client java/jimmer-sql/ and kotlin/jimmer-sql-kt/ are two examples of building REST services using Jimmer. Jimmer can automatically generate TypeScript code required by the web client (documentation link). This is a React-based web application that demonstrates how to use the automatically generated TypeScript code by Jimmer.
env-with-cache Jimmer supports powerful caching (documentation link). Developers can specify a Spring profile to run java/jimmer-sql/, kotlin/jimmer-sql-kt/, java/jimmer-sql-graphql/, or kotlin/jimmer-sql-graphql-kt/ with caching support. In this running mode, these examples require an external environment, and this sub-directory is the installation directory for those external environments.

For more details, please refer to the descriptions in the respective sub-directories.

All Examples

Java Kotlin Description Importance
java/jimmer-core kotlin/jimmer-core-kt ORM-independent examples, showcasing immer-style immutable objects ★★★★
java/jimmer-sql kotlin/jimmer-sql-kt Quickly build REST services using Jimmer. This example showcases most of Jimmer's features and is the most important and fundamental example ★★★★★
java/jimmer-sql-graphql kotlin/jimmer-sql-graphql-kt Quickly build GraphQL services using Jimmer ★★
java/jimmer-cloud kotlin/jimmer-cloud-kt A microservices project based on Spring Cloud, showcasing Jimmer's remote association
java/save-command kotlin/save-command-kt A dedicated example for save commands ★★★