-
Notifications
You must be signed in to change notification settings - Fork 40.7k
Spring Boot 2.2.0 M2 Release Notes
For changes in earlier milestones, please refer to:
See instructions in the 2.2.0.M1 release notes for upgrading from Spring Boot 2.1.
This release upgrades to Spring Framework 5.2 M1. Please refer to Spring Framework’s upgrade documentation for further details.
This release upgrades to Elasticsearch 6.7 which contains some breaking API changes. Please see the 6.5, 6.6 and 6.7 breaking changes pages for details.
As of Spring Boot 2.2.0, both Elasticsearch transport and Jest clients are deprecated in favor of other options, such as RestHighLevelClient
. The reference docs on Elasticsearch support have been updated.
Spring Boot now lets Hibernate chose the dialect to use rather than applying a default dialect based on the detected database. If you had a dialect configured previously, you may want to remove your customization.
The new support for @ConfigurationProperties
scanning means that two beans may be created for a class that is annotated with both @Component
and @ConfigurationProperties
. In such cases, @Component
should be removed. Please see the note at the end of the relevant section in the reference documentation for further details.
Tip
|
Check the configuration changelog for a complete overview of the changes in configuration. |
Classes annotated with @ConfigurationProperties
can now be found via classpath scanning as an alternative to using @EnableConfigurationProperties
or @Component
. If you use @SpringBootApplication
, scanning is enabled by default for the package that contains the @SpringBootApplication
-annotated class.
Scanning can be enabled manually, and the scanned packages can be customized, using @ConfigurationPropertiesScan
.
Configuration properties now support constructor-based binding, which allows a @ConfigurationProperties
-annotated class to be immutable. Please see the relevant section of the reference documentation for further details.
A new Spring Boot starter has been added in this release, spring-boot-starter-rsocket
. This starter brings the required dependencies for building an application with RSocket support.
For more on that, check out the reference docs on RSocket support.
The support for lazy initialization that was introduced in 2.2.0.M1 has been improved. It is now possible to force a bean to be initialised eagerly by annotating its definition with @Lazy(false)
.
Startup time and memory usage have been reduced by making use of proxyBeanMethods=false
in Spring Boot’s @Configuration
classes. proxyBeanMethods
is a new attribute on @Configuration
introduced in Spring Framework 5.2 M1. proxyBeanMethods
is also available as an attribute on @SpringBootApplication
and @SpringBootConfiguration
.
The ApplicationContextRunner
test utility now allows to register bean inline, see withBean
for more details.
Spring Boot 2.2.0.M2 moves to new versions of several Spring projects:
-
Spring AMQP 2.2.0.M1
-
Spring Batch 4.2.0.M1
-
Spring Integration 5.2.0.M1
-
Spring Kafka 2.3.0.M1
-
Spring Session Corn-M1
Numerous third-party dependencies have also been updated, some of the more noteworthy of which are the following:
-
Artemis 2.7
-
Elasticsearch 6.7
-
Kafka 2.2
-
Hazelcast 3.12
-
Solr 8.0