File tree Expand file tree Collapse file tree 5 files changed +21
-3
lines changed
Expand file tree Collapse file tree 5 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Performance comparison between Spring Boot and Quarkus
44This project contains the following modules:
55- [ springboot3] ( springboot3 )
66 - A Spring Boot 3.x version of the application
7+ - [ springboot4] ( springboot4 )
8+ - A Spring Boot 4.x version of the application
79- [ quarkus3] ( quarkus3 )
810 - A Quarkus 3.x version of the application
911- [ quarkus3-spring-compatibility] ( quarkus3-spring-compatibility )
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ spring:
33 username : fruits
44 password : fruits
55 url : jdbc:postgresql://localhost:5432/fruits
6- defer-datasource-initialization : true
76 jackson :
87 default-property-inclusion : non_empty
98 jpa :
9+ defer-datasource-initialization : true
1010 properties :
1111 hibernate :
1212 cache :
Original file line number Diff line number Diff line change 77 hibernate :
88 ddl-auto : create-drop
99 defer-datasource-initialization : true
10+ properties :
11+ hibernate :
12+ cache :
13+ # 1. Enable Hibernate's L2 Caching
14+ use_second_level_cache : true
15+ # 2. Configure the cache region factory (specifies the JCache/Caffeine provider)
16+ region :
17+ factory_class : jcache
1018 jackson :
1119 default-property-inclusion : non_empty
1220 sql :
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ spring:
33 username : fruits
44 password : fruits
55 url : jdbc:postgresql://localhost:5432/fruits
6- defer-datasource-initialization : true
76 jackson :
87 default-property-inclusion : non_empty
98 jpa :
9+ defer-datasource-initialization : true
1010 properties :
1111 hibernate :
1212 cache :
Original file line number Diff line number Diff line change 77 hibernate :
88 ddl-auto : create-drop
99 defer-datasource-initialization : true
10+ properties :
11+ hibernate :
12+ cache :
13+ # 1. Enable Hibernate's L2 Caching
14+ use_second_level_cache : true
15+ # 2. Configure the cache region factory (specifies the JCache/Caffeine provider)
16+ region :
17+ factory_class : jcache
1018 jackson :
1119 default-property-inclusion : non_empty
1220 sql :
1321 init :
14- mode : always
22+ mode : always
You can’t perform that action at this time.
0 commit comments