-
Notifications
You must be signed in to change notification settings - Fork 38.3k
Upgrading to Spring Framework 6.x
This page provides guidance on upgrading to Spring Framework 6.x.
Spring Framework 6.2 raises its minimum requirements with the following libraries:
- For GraalVM native image support only, Hibernate 6.5+ is now required.
- HtmlUnit 4.2.0 or higher
- FreeMarker 2.3.26 or higher
Several deprecated classes, constructors, and methods have been removed across the code base. See 30608 and 31492.
6.2 comes with a slightly revised autowiring algorithm where among a set of candidate beans that match by type, parameter name matches and @Qualifier("...")
matches (against the target bean name) overrule @jakarta.annotation.Priority
ranking whereas they were previously checked the other way around. That said, since we do not recommend mixing and matching those qualification mechanisms and generally do not recommend @Priority
for identifying single candidates (rather just for ranking multiple candidates in an injected collection), we do not expect common regressions here. Note that @Primary
beans always come first (and as a side note, 6.2 introduces the notion of @Fallback
beans as well).
6.2 also comes with deeper generic type matching. If an injection point that previously matched does not match anymore, double-check your generic signatures at that injection point (e.g. your constructor argument) and for the bean type on the bean definition (e.g. the return type of your @Bean
method). Spring is effectively less lenient in accepting fallback matches now, insisting on the resolvable part of the type signature to match even if the remaining part is leniently accepted with unresolvable type variables or wildcards.
Component scanning happens early in the BeanFactory
initialization and, as such, is not suitable to be guarded by a condition that is evaluated late. We now fail hard if you use @ComponentScan
with a REGISTER_BEAN
condition (such as Spring Boot's @ConditionalOnBean
).
We've made it clearer that bean definition overriding is discouraged in production code, and the container now logs each override at INFO
level. While not recommended, you can silence those logs by setting the allowBeanDefinitionOverriding
flag to true
on the bean factory or application context before it is refreshed.
The JMS DefaultMessageListenerContainer
comes with revised idleReceivesPerTaskLimit
semantics when using its default executor: Core threads always stay alive now, with only surplus consumers (between concurrentConsumers
and maxConcurrentConsumers
) timing out after the specified number of idle receives. Only in combination with a maxMessagesPerTask
does idleReceivesPerTaskLimit
have an effect on core consumers as well, as inferred for an external thread pool for dynamic rescheduling of all consumer tasks.
Support for HtmlUnit has moved to a new major release that requires some changes when upgrading, see Migrating from HtmlUnit 2.x.x to HtmlUnit 3.x.x for additional details.
If you are using HtmlUnit with Selenium, please note that the coordinates of the driver have changed, and the version now matches the Selenium version: org.seleniumhq.selenium:htmlunit3-driver:X.Y.Z
, where X.Y.Z
is your Selenium version.
org.webjars:webjars-locator-core
support implemented in WebJarsResourceResolver
is deprecated due to efficiency issues as of Spring Framework 6.2 and is superseded by org.webjars:webjars-locator-lite
support implemented in LiteWebJarsResourceResolver
.
Spring Framework 6.1 raises its minimum requirements with the following libraries:
- SnakeYAML 2.0
- Jackson 2.14
- Kotlin Coroutines 1.7
- Kotlin Serialization 1.5
Several deprecated classes, constructors, and methods have been removed across the code base. See 29449 and 30604.
RPC-style remoting that has been officially and/or effectively deprecated for several years has been removed. This impacts Hessian, HTTP Invoker, JMS Invoker, and JAX-WS support, see 27422.
EJB access has also been removed as part of this effort. If you need to lookup an EJB, use JNDI directly via JndiObjectFactoryBean
or <jee:jndi-lookup>
.
LocalVariableTableParameterNameDiscoverer
has been removed in 6.1. Consequently, code within the Spring Framework and Spring portfolio frameworks no longer attempts to deduce parameter names by parsing bytecode. If you experience issues with dependency injection, property binding, SpEL expressions, or other use cases that depend on the names of parameters, you should compile your Java sources with the common Java 8+ -parameters
flag for parameter name retention (instead of relying on the -debug
compiler flag) in order to be compatible with StandardReflectionParameterNameDiscoverer
. The Groovy compiler also supports a -parameters
flag for the same purpose. With the Kotlin compiler, use the -java-parameters
flag.
Maven users need to configure the maven-compiler-plugin
for Java source code:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<parameters>true</parameters>
</configuration>
</plugin>
Gradle users need to configure the JavaCompile
task for Java source code, either with the Kotlin DSL:
tasks.withType<JavaCompile>() {
options.compilerArgs.add("-parameters")
}
Or the Groovy DSL:
tasks.withType(JavaCompile).configureEach {
options.compilerArgs.add("-parameters")
}
Similarly, Gradle users need to configure the GroovyCompile
task for Groovy source code, either with the Kotlin DSL:
tasks.withType<GroovyCompile>() {
groovyOptions.parameters = true
}
Or the Groovy DSL:
tasks.withType(GroovyCompile).configureEach {
groovyOptions.parameters = true
}
Sometimes it is also necessary to manually configure your IDE.
In IntelliJ IDEA, open Settings
and add -parameters
to the following field.
- Build, Execution, Deployment → Compiler → Java Compiler → Additional command line parameters
In Eclipse IDE, open Preferences
and activate the following checkbox.
- Java → Compiler → Store information about method parameters (usable via reflection)
In VSCode, edit or add the .settings/org.eclipse.jdt.core.prefs
file with the following content:
org.eclipse.jdt.core.compiler.codegen.methodParameters=generate
Aligned with the deprecation of java.net.URL
constructors in JDK 20, URL
resolution is now consistently performed via URI
, including the handling of relative paths. This includes behavioral changes for uncommon cases such as when specifying a full URL as a relative path.
See 29481 and 28522.
AutowireCapableBeanFactory.createBean(Class, int, boolean)
is deprecated now, in favor of the convention-based createBean(Class)
. The latter is also consistently used internally in 6.1 – for example, in SpringBeanJobFactory
for Quartz and SpringBeanContainer
for Hibernate.
Array-to-collection conversion prefers a List
result rather than a Set
for a declared target type of Collection
.
ThreadPoolTaskExecutor
and ThreadPoolTaskScheduler
enter a graceful shutdown phase when the application context starts to close. As a consequence, further task submissions are not accepted during stop or destroy callbacks in other components anymore. If the latter is necessary, switch the executor/scheduler's acceptTasksAfterContextClose
flag to true
, at the expense of a longer shutdown phase.
Message resolution through the ApplicationContext
(accessing its internal MessageSource
) is only allowed while the context is still active. After context close, getMessage
attempts will throw an IllegalStateException
now.
When building a native image, the verbose logging about pre-computed fields has been removed by default, and can be restored by passing -Dspring.native.precompute.log=verbose
as a native-image
compiler build argument to display related detailed logs.
Spring's declarative caching infrastructure detects reactive method signatures, e.g. returning a Reactor Mono
or Flux
, and specifically processes such methods for asynchronous caching of their produced values rather than trying to cache the returned Reactive Streams Publisher
instances themselves. This requires support in the target cache provider, e.g. with CaffeineCacheManager
being set to setAsyncCacheMode(true)
. For existing applications which rely on synchronous caching of custom Mono.cache()
/Flux.cache()
results, we recommend revising this towards 6.1-style caching of produced values; if such a revision is not immediately possible/desirable, you may set the system property "spring.cache.reactivestreams.ignore=true" (or put a similar entry into a spring.properties
file on the classpath).
@TransactionalEventListener
rejects invalid @Transactional
usage on the same method: only allowed as REQUIRES_NEW
(possibly in combination with @Async
).
JPA bootstrapping now fails in case of an incomplete Hibernate Validator setup (e.g. without an EL provider), making such a scenario easier to debug.
Since JpaTransactionManager
with HibernateJpaDialect
translates commit/rollback exceptions to DataAccessException
subclasses wherever possible, a Hibernate transaction exception formerly propagated as a generic JpaSystemException
may show up as e.g. CannotAcquireLockException
now. For a non-translatable fallback exception, JpaSystemException
will be consistently thrown for commit/rollback now, instead of the former TransactionSystemException
propagated from rollback.
Spring MVC and WebFlux now have built-in method validation support for controller method parameters with @Constraint
annotations. To be in effect, you need to 1) opt out of AOP-based method validation by removing @Validated
at the controller class level, 2) ensure mvcValidator
or webFluxValidator
beans are of type jakarta.validation.Validator
(for example, LocalValidatorFactoryBean
), and 3) have constraint annotations directly on method parameters. Where method validation is required (i.e. constraint annotations are present), model attribute and request body arguments with @Valid
are also validated at the method level, and in that case no longer validated at the argument resolver level, thereby avoiding double validation. BindingResult
arguments are still respected, but if not present or if method validation fails on other parameters, then a MethodValidationException
raised. That's not handled yet in 6.1 M1, but will be in M2 with 30644. See 29825 for more details on the support in M1, and also the umbrella issue 30645 for all other related tasks and for providing feedback.
The format for MethodArgumentNotValidException
and WebExchangeBindException
message arguments has changed. Errors are now joined with ", and "
, without single quotes and brackets. Field errors are resolved through the MessageSource
with nothing further such as the field name added. This gives applications full control over the error format by customizing individual error codes. See 30198 and also planned documentation improvement 30653.
The default order of mappings has been refined to be more consistent by changing RouterFunctionMapping
order from 3
to -1
in Spring MVC. That means RouterFunctionMapping
is now always ordered before RequestMappingHandlerMapping
in both Spring MVC and Spring WebFlux. See 30278 for more details.
The throwExceptionIfNoHandlerFound
property of DispatcherHandler
is now set to true
by default and is deprecated. The resulting exception is handled by default as a 404 error so it should result in the same outcome. Likewise, ResourceHttpRequestHandler
now raises NoResourceFoundException
, which is also handled by default as a 404, and should have the same outcome for most applications. See 29491.
@RequestParam
, @RequestHeader
, and other controller method argument annotations now use the defaultValue if the input is a non-empty String without text.
ResponseBodyEmitter
now completes the response if the exception is not an IOException
, see issue 30687.
Preflight checks are now executed at the start of the HandlerInteceptor
chain and not at the end.
The HTTP interface client no longer enforces a 5 second default timeout on methods with a blocking signature, instead relying on default timeout and configuration settings of the underlying HTTP client. See 30248.
The HTTP server Observability instrumentation in WebFlux was limited and was not properly observing errors. As a result, the WebFlux ServerHttpObservationFilter
is now deprecated in favor of direct instrumentation on the WebHttpHandlerBuilder
. See 30013.
ReactorResourceFactory
class has been moved from the org.springframework.http.client.reactive
package to the org.springframework.http.client
one.
To reduce memory usage in RestClient
and RestTemplate
, most ClientHttpRequestFactory
implementations no longer buffer request bodies before sending them to the server.
As a result, for certain content types such as JSON, the contents size is no longer known, and a Content-Length
header is no longer set.
If you would like to buffer request bodies like before, simply wrap the ClientHttpRequestFactory
you are using in a BufferingClientHttpRequestFactory
.
Jackson ParameterNamesModule
is now part of the well-known modules automatically registered by Jackson2ObjectMapperBuilder
when present in the classpath. This can introduce changes of behavior in JSON serialization/deserialization as mentioned in the module documentation linked above. In such case, additional @JsonCreator
or @JsonProperty("propertyName")
annotations may be required. If you prefer avoid enabling such module, it is possible to use Jackson2ObjectMapperBuilder#modules
in order to disable automatic module registration.
ReactorClientHttpConnector
now implements SmartLifecycle
to provide lifecycle management capabilities. As a consequence, it now requires spring-context
dependency.
The RSocket interface client no longer enforces a 5 second default timeout on methods with a blocking signature, instead relying on default timeout and configuration settings of the RSocket client, and the underlying RSocket transport. See 30248.
In an effort to reduce the potential for security vulnerabilities in the Spring Expression Language (SpEL) to adversely affect Spring applications, the team has decided to disable support for evaluating SpEL expressions from untrusted sources by default. Within the core Spring Framework, this applies to the SpEL-based selector
header support in WebSocket messaging, specifically in the DefaultSubscriptionRegistry
. The selector
header support will remain in place but will have to be explicitly enabled beginning with Spring Framework 6.1 (see 30550). For example, a custom implementation of WebSocketMessageBrokerConfigurer
can override the configureMessageBroker()
method and configure the selector header name as follows: registry.enableSimpleBroker().setSelectorHeaderName("selector");
.
By default, if an error is encountered during build-time AOT processing, an exception will be thrown, and the overall process will fail immediately. If you would prefer that build-time AOT processing continue after errors are encountered, you can disable the failOnError
mode which results in errors being logged at WARN
level or with greater detail at DEBUG
level. The failOnError
mode can be disabled from the command line or a build script by setting a JVM system property named spring.test.aot.processing.failOnError
to false
. As an alternative, you can set the same property via the SpringProperties
mechanism.
The JSR-330 based @Inject
annotation is to be found in jakarta.inject
now. The corresponding JSR-250 based annotations @PostConstruct
and @PreDestroy
are to be found in jakarta.annotation
. For the time being, Spring keeps detecting their javax
equivalents as well, covering common use in pre-compiled binaries.
The core container performs basic bean property determination without java.beans.Introspector
by default. For full backwards compatibility with 5.3.x in case of sophisticated JavaBeans usage, specify the following content in a META-INF/spring.factories
file which enables 5.3-style full java.beans.Introspector
usage: org.springframework.beans.BeanInfoFactory=org.springframework.beans.ExtendedBeanInfoFactory
When staying on 5.3.x for the time being, you may enforce forward compatibility with 6.0-style property determination (and better introspection performance!) through a custom META-INF/spring.factories
file: org.springframework.beans.BeanInfoFactory=org.springframework.beans.SimpleBeanInfoFactory
LocalVariableTableParameterNameDiscoverer
is deprecated now and logs a warning for each successful resolution attempt (it only kicks in when StandardReflectionParameterNameDiscoverer
has not found names). Compile your Java sources with the common Java 8+ -parameters
flag for parameter name retention (instead of relying on the -debug
compiler flag) in order to avoid that warning, or report it to the maintainers of the affected code. With the Kotlin compiler, we recommend the -java-parameters
flag for completeness.
LocalValidatorFactoryBean
relies on standard parameter name resolution in Bean Validation 3.0 now, just configuring additional Kotlin reflection if Kotlin is present. If you refer to parameter names in your Bean Validation setup, make sure to compile your Java sources with the Java 8+ -parameters
flag.
ListenableFuture
has been deprecated in favor of CompletableFuture
. See 27780.
Methods annotated with @Async
must return either Future
or void
. This has long been documented but is now also actively checked and enforced, with an exception thrown for any other return type. See 27734.
SimpleEvaluationContext
disables array allocations now, aligned with regular constructor resolution.
The org.springframework.cache.ehcache
package has been removed as it was providing support for ehcache 2.x - with this version, net.sf.ehcache
is using JavaEE APIs and is about to be End Of Life'd. Ehcache3 is the direct replacement. You should revisit your dependency management to use org.ehcache:ehcache
(with the jakarta
classifier) instead and look into the official migration guide or reach out to the ehcache community for assistance. We did not replace org.springframework.cache.ehcache
with an updated version, as using ehcache through the JCache API or its new native API is preferred.
Due to the Jakarta EE migration, make sure to upgrade to Hibernate ORM 5.6.x with the hibernate-core-jakarta
artifact, alongside switching your javax.persistence
imports to jakarta.persistence
(Jakarta EE 9). Alternatively, consider migrating to Hibernate ORM 6.1 right away (exclusively based on jakarta.persistence
, compatible with EE 9 as well as EE 10) which is the Hibernate version that Spring Boot 3.0 comes with.
The corresponding Hibernate Validator generation is 7.0.x, based on jakarta.validation
(Jakarta EE 9). You may also choose to upgrade to Hibernate Validator 8.0 right away (aligned with Jakarta EE 10).
For EclipseLink as the persistence provider of choice, the reference version is 3.0.x (Jakarta EE 9), with EclipseLink 4.0 as the most recent supported version (Jakarta EE 10).
Spring's default JDBC exception translator is the JDBC 4 based SQLExceptionSubclassTranslator
now, detecting JDBC driver subclasses as well as common SQL state indications (without database product name resolution at runtime). As of 6.0.3, this includes a common SQL state check for DuplicateKeyException
, addressing a long-standing difference between SQL state mappings and legacy default error code mappings.
CannotSerializeTransactionException
and DeadlockLoserDataAccessException
are deprecated as of 6.0.3 due to their inconsistent JDBC semantics, in favor of the PessimisticLockingFailureException
base class and consistent semantics of its common CannotAcquireLockException
subclass (aligned with JPA/Hibernate) in all default exception translation scenarios.
For full backwards compatibility with database-specific error codes, consider re-enabling the legacy SQLErrorCodeSQLExceptionTranslator
. This translator kicks in for user-provided sql-error-codes.xml
files. It can simply pick up Spring's legacy default error code mappings as well when triggered by an empty user-provided file in the root of the classpath.
Due to the Jakarta EE migration, make sure to upgrade to Tomcat 10, Jetty 11, or Undertow 2.2.19 with the undertow-servlet-jakarta
artifact, alongside switching your javax.servlet
imports to jakarta.servlet
(Jakarta EE 9). For the latest server generations, consider Tomcat 10.1 and Undertow 2.3 (Jakarta EE 10).
Several outdated Servlet-based integrations have been dropped: e.g. Apache Commons FileUpload (org.springframework.web.multipart.commons.CommonsMultipartResolver
), and Apache Tiles as well as FreeMarker JSP support in the corresponding org.springframework.web.servlet.view
subpackages. We recommend org.springframework.web.multipart.support.StandardServletMultipartResolver
for multipart file uploads and regular FreeMarker template views if needed, and a general focus on REST-oriented web architectures.
Spring MVC and Spring WebFlux no longer detect controllers based solely on a type-level @RequestMapping
annotation. That means interface-based AOP proxying for web controllers may no longer work. Please, enable class-based proxying for such controllers; otherwise the interface must also be annotated with @Controller
. See 22154.
HttpMethod
is now a class and no longer an enum. Though the public API has been maintained, some migration might be necessary (i.e. change from EnumSet<HttpMethod>
to Set<HttpMethod>
, use if else
instead of switch
). For the rationale behind this decision, see 27697.
The Kotlin extension function to WebTestClient.ResponseSpec::expectBody
now returns the Java BodySpec
type and no longer uses the workaround type KotlinBodySpec
. Spring 6.0 uses Kotlin 1.6, which fixed the bug that needed this workaround (KT-5464). This means that consumeWith
is no longer available.
RestTemplate
, or rather the HttpComponentsClientHttpRequestFactory
, now requires Apache HttpClient 5.
The Spring-provided Servlet mocks (MockHttpServletRequest
, MockHttpSession
) require Servlet 6.0 now, due to a breaking change between the Servlet 5.0 and 6.0 API jars. They can be used for testing Servlet 5.0 based code but need to run against the Servlet 6.0 API (or newer) on the test classpath. Note that your production code may still compile against Servlet 5.0 and get integration-tested with Servlet 5.0 based containers; just mock-based tests need to run against the Servlet 6.0 API jar.
SourceHttpMessageConverter
is not configured by default anymore in Spring MVC and RestTemplate
. As a consequence, Spring web applications using javax.xml.transform.Source
now need to configure SourceHttpMessageConverter
explicitly. Note that the order of converter registration is important, and SourceHttpMessageConverter
should typically be registered before "catch-all" converters like MappingJackson2HttpMessageConverter
for example.