-
Notifications
You must be signed in to change notification settings - Fork 41.9k
Spring Boot 4.1.0 M4 Release Notes
This is an out-of-band release to revert Rabbit and AMQP changes made in M3. If you are upgrading from M3, you may need to revert to the previous AMQP starter POMs.
It also fixes a regression in application.properties/application.yaml processing.
The spring.data.jpa.repositories.bootstrap-mode property has been refined to better align typical application usage.
-
If you set the mode to
deferred, you will now get an exception if a suitableAsycTaskExecutorbean cannot be found for use with the auto-configuredLocalContainerEntityManagerFactoryBeanbootstrap executor. -
If you set the mode to
lazy, then the auto-configuredLocalContainerEntityManagerFactoryBeanbootstrap executor is no longer set as it’s generally not needed.
|
Tip
|
Check the configuration changelog for a complete overview of the changes in configuration. |
Numerous third-party dependencies have been updated, some of the more noteworthy of which are the following:
Apart from the changes listed above, there have also been a few minor tweaks and improvements including:
-
A new
spring.jpa.bootstrapproperty has been added to allow you to configure async background bootstrapping of theLocalContainerEntityManagerFactoryBean. -
Custom gRPC server-side conventions are associated with the auto-configured
ObservationGrpcServerInterceptor.