diff --git a/boot-rabbitmq-thymeleaf/pom.xml b/boot-rabbitmq-thymeleaf/pom.xml
index 050e86212..809d8ab50 100644
--- a/boot-rabbitmq-thymeleaf/pom.xml
+++ b/boot-rabbitmq-thymeleaf/pom.xml
@@ -30,54 +30,54 @@
${jacoco.itReportFolder}/integrationTest.exec
${project.testresult.directory}/test
${project.testresult.directory}/integrationTest
-
-
-
-
- org.springframework.boot
- spring-boot-starter-actuator
-
-
- org.springframework.boot
- spring-boot-starter-amqp
-
-
- org.springframework.boot
- spring-boot-starter-thymeleaf
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- org.springframework.boot
- spring-boot-starter-data-jpa
-
-
- org.liquibase
- liquibase-core
-
-
-
- com.h2database
- h2
- runtime
-
-
- org.springframework.boot
- spring-boot-devtools
- runtime
- true
-
-
-
- org.webjars
- webjars-locator-core
-
-
- org.glassfish.jaxb
- jaxb-runtime
- provided
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+ org.springframework.boot
+ spring-boot-starter-amqp
+
+
+ org.springframework.boot
+ spring-boot-starter-thymeleaf
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-data-jpa
+
+
+ org.liquibase
+ liquibase-core
+
+
+
+ com.h2database
+ h2
+ runtime
+
+
+ org.springframework.boot
+ spring-boot-devtools
+ runtime
+ true
+
+
+
+ org.webjars
+ webjars-locator-core
+
+
+ org.glassfish.jaxb
+ jaxb-runtime
+ provided
org.webjars
@@ -262,7 +262,7 @@
- 1.17.0
+ 1.18.1
diff --git a/boot-ultimate-redis/src/main/java/com/example/ultimateredis/config/CacheConfig.java b/boot-ultimate-redis/src/main/java/com/example/ultimateredis/config/CacheConfig.java
index 7f8b29190..ec6d93553 100644
--- a/boot-ultimate-redis/src/main/java/com/example/ultimateredis/config/CacheConfig.java
+++ b/boot-ultimate-redis/src/main/java/com/example/ultimateredis/config/CacheConfig.java
@@ -42,8 +42,7 @@ RedisCacheConfiguration defaultCacheConfig() {
}
@Bean
- LettuceConnectionFactory redisConnectionFactory(
- CacheConfigurationProperties properties) {
+ LettuceConnectionFactory redisConnectionFactory(CacheConfigurationProperties properties) {
log.info(
"Redis (/Lettuce) configuration enabled. With cache timeout "
+ properties.getTimeoutSeconds()
diff --git a/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/config/RestClientConfiguration.java b/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/config/RestClientConfiguration.java
index fe552d20b..cf239180a 100644
--- a/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/config/RestClientConfiguration.java
+++ b/httpClients/boot-http-proxy/src/main/java/com/example/rest/proxy/config/RestClientConfiguration.java
@@ -31,8 +31,7 @@ HttpServiceProxyFactory httpServiceProxyFactory(
}
@Bean
- JsonPlaceholderService jsonPlaceholderService(
- HttpServiceProxyFactory httpServiceProxyFactory) {
+ JsonPlaceholderService jsonPlaceholderService(HttpServiceProxyFactory httpServiceProxyFactory) {
return httpServiceProxyFactory.createClient(JsonPlaceholderService.class);
}
}
diff --git a/jpa/boot-read-replica-postgresql/src/main/java/com/example/demo/readreplica/config/DatabaseConfig.java b/jpa/boot-read-replica-postgresql/src/main/java/com/example/demo/readreplica/config/DatabaseConfig.java
index 1c80c3a6b..4cb27911d 100644
--- a/jpa/boot-read-replica-postgresql/src/main/java/com/example/demo/readreplica/config/DatabaseConfig.java
+++ b/jpa/boot-read-replica-postgresql/src/main/java/com/example/demo/readreplica/config/DatabaseConfig.java
@@ -49,8 +49,7 @@ DataSource replicaDataSource(final DataSourceProperties replicaDataSourcePropert
@Bean
@Primary
- DataSource dataSource(
- final DataSource primaryDataSource, final DataSource replicaDataSource) {
+ DataSource dataSource(final DataSource primaryDataSource, final DataSource replicaDataSource) {
final RoutingDataSource routingDataSource = new RoutingDataSource();
final Map