forked from spring-projects/spring-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
What's New in Spring Framework 5.x
Rob Winch edited this page Jul 25, 2018
·
118 revisions
This document provides a summary of features and changes in Spring Framework 5.0 and 5.1. Also see the Spring Framework 5 FAQ for answers to common questions. Or back to Spring Framework Versions.
- Infrastructure:
- Warning-free support for JDK 11 on classpath and module path.
- Out-of-the-box support for GraalVM conventions.
- Upgrade to Reactor Core 3.2 and Reactor Netty 0.8 ("Reactor Californium").
- Core facilities:
- NIO.2 Path support in FileSystemResource (superseding PathResource).
- Performance improvements for core type and annotation resolution.
- Consistent detection of method annotations on generic interfaces.
- Logging revision:
- Spring's JCL bridge can be detected by standard Commons Logging.
- Less noise on info, readable debug logs, details at trace level.
- Bean definitions:
- Support for logical and/or expressions in @Profile conditions.
- Refined Kotlin beans DSL.
- Bean retrieval:
- Consistent non-exposure of null beans in the BeanFactory API.
- Programmatic ObjectProvider retrieval through the BeanFactory API.
- ObjectProvider iterable/stream access for beans-of-type resolution.
- Empty collection/map/array injection in single constructor scenarios.
- Controller parameter annotations get detected on interfaces as well:
- Allowing for complete mapping contracts in controller interfaces.
- Support for stricter encoding of URI variables in UriComponentsBuilder.
- Updated web locale representation:
- Language tag compliant by default.
- CookieLocaleResolver sends RFC6265-compliant timezone cookies.
- Specific MVC exceptions for missing header, cookie, path variable:
- Allowing for differentiated exception handling and status codes.
- External base path for sets of annotated controllers:
- Configured via
WebMvcConfigurer#configurePathMatch.
- Configured via
- Centralized handling of Forwarded headers in ForwardedHeaderFilter.
- Correlated WebFlux log messages.
- DSL enhancements:
- DSL-style router function builder.
- Refined Kotlin router DSL.
- Third-party integration:
- Support for Protobuf serialization.
- Jetty-based WebClient connector.
- Hamcrest and XML assertions in WebTestClient.
- Session cookies specify SameSite attribute to protect against CSRF attacks
- Support for reactive clients in @MessageMapping methods:
- Out-of-the-box support for Mono/Flux return values.
- Option to preserve order of STOMP messages on WebSocket broker.
- Support for Hibernate ORM 5.3:
- Bean container integration with Hibernate's new SPI.
- LocalSessionFactoryBean supports standard JPA interaction as well:
- Allowing for native Hibernate as well as JPA access within same transaction.
- Read-only transactions do not retain entity snapshots on Hibernate:
- Session.setDefaultReadOnly(true) by default.
- SAP HANA as common JpaVendorAdapter database platform.
- Entire framework codebase based on Java 8 source code level now.
- Improved readability through inferred generics, lambdas, etc.
- Conditional support for Java 8 features now in straight code.
- Full compatibility with JDK 9 for development and deployment.
- On classpath as well as module path (with stable automatic module names).
- Framework build and test suite passes on JDK 9 (runs on JDK 8 by default).
- Java EE 7 API level required in Spring's corresponding features now.
- Servlet 3.1, Bean Validation 1.1, JPA 2.1, JMS 2.0
- Recent servers: e.g. Tomcat 8.5+, Jetty 9.4+, WildFly 10+
- Compatibility with Java EE 8 API level at runtime.
- Servlet 4.0, Bean Validation 2.0, JPA 2.2, JSON Binding API 1.0
- Tested against Tomcat 9.0, Hibernate Validator 6.0, Apache Johnzon 1.1
- Package
beans.factory.access(BeanFactoryLocatormechanism). - Package
jdbc.support.nativejdbc(NativeJdbcExtractormechanism). - Package
mock.staticmockremoved fromspring-aspectsmodule.- No support for
AnnotationDrivenStaticEntityMockingControlanymore.
- No support for
- Packages
web.view.tiles2andorm.hibernate3/hibernate4dropped.- Minimum requirement: Tiles 3 and Hibernate 5 now.
- Dropped support: Portlet, Velocity, JasperReports, XMLBeans, JDO, Guava.
- Recommendation: Stay on Spring Framework 4.3.x for those if needed.
- Many deprecated classes and methods removed across the codebase.
- A few compromises made for commonly used methods in the ecosystem.
- JDK 8+ enhancements:
- Efficient method parameter access based on Java 8 reflection enhancements.
- Selective declarations of Java 8 default methods in core Spring interfaces.
- Consistent use of JDK 7
CharsetandStandardCharsetsenhancements.
- JDK 9 compatibility:
- Avoiding JDK APIs which are deprecated in JDK 9 wherever possible.
- Consistent instantiation via constructors (with revised exception handling).
- Defensive use of reflection against core JDK classes.
- Non-null API declaration at the package level:
- Nullable arguments, fields and return values explicitly annotated with
@Nullable. - Primarily for use with IntelliJ IDEA and Kotlin, but also Eclipse and FindBugs.
- Some Spring APIs are not tolerating null values anymore (e.g. in
StringUtils).
- Nullable arguments, fields and return values explicitly annotated with
-
Resourceabstraction providesisFileindicator for defensivegetFileaccess.- Also features NIO-based
readableChannelaccessor in theResourceinterface. - File system access via NIO.2 streams (no
FileInput/OutputStreamused anymore).
- Also features NIO-based
- Spring Framework 5.0 comes with its own Commons Logging bridge out of the box:
-
spring-jclinstead of standard Commons Logging; still excludable/overridable. - Autodetecting Log4j 2.x, SLF4J, JUL (java.util.logging) without any extra bridges.
-
-
spring-corecomes with ASM 6.0 (next to CGLIB 3.2.5 and Objenesis 2.6).
- Support for any
@Nullableannotations as indicators for optional injection points. - Functional style on
GenericApplicationContext/AnnotationConfigApplicationContext-
Supplier-based bean registration API with bean definition customizer callbacks.
-
- Consistent detection of transaction, caching, async annotations on interface methods.
- In case of CGLIB proxies.
- XML configuration namespaces streamlined towards unversioned schemas.
- Always resolved against latest
xsdfiles; no support for deprecated features. - Version-specific declarations still supported but validated against latest schema.
- Always resolved against latest
- Support for candidate component index (as alternative to classpath scanning).
- Full Servlet 3.1 signature support in Spring-provided
Filterimplementations. - Support for Servlet 4.0
PushBuilderargument in Spring MVC controller methods. -
MaxUploadSizeExceededExceptionfor Servlet 3.0 multipart parsing on common servers. - Unified support for common media types through
MediaTypeFactorydelegate.- Superseding use of the Java Activation Framework.
- Data binding with immutable objects (Kotlin / Lombok /
@ConstructorProperties) - Support for the JSON Binding API (with Eclipse Yasson or Apache Johnzon as an alternative to Jackson and GSON).
- Support for Jackson 2.9.
- Support for Protobuf 3.
- Support for Reactor 3.1
FluxandMonoas well as RxJava 1.3 and 2.1 as return values from Spring MVC controller methods targeting use of the new reactiveWebClient(see below) or Spring Data Reactive repositories in Spring MVC controllers. - New
ParsingPathMatcheralternative toAntPathMatcherwith more efficient parsing and extended syntax. -
@ExceptionHandlermethods allowRedirectAttributesarguments (and therefore flash attributes). - Support for
ResponseStatusExceptionas a programmatic alternative to@ResponseStatus. - Support script engines that do not implement
Invocablevia direct rendering of the script provided usingScriptEngine#eval(String, Bindings), and also i18n and nested templates inScriptTemplateViewvia the newRenderingContextparameter. - Spring's FreeMarker macros (
spring.ftl) use HTML output formatting now (requiring FreeMarker 2.3.24+).
- New spring-webflux module, an alternative to
spring-webmvcbuilt on a reactive foundation -- fully asynchronous and non-blocking, intended for use in an event-loop execution model vs traditional large thread pool with thread-per-request execution model. - Reactive infrastructure in
spring-coresuch asEncoderandDecoderfor encoding and decoding streams of Objects;DataBufferabstraction, e.g. for using JavaByteBufferor NettyByteBuf;ReactiveAdapterRegistryfor transparent support of reactive libraries in controller method signatures. - Reactive infrastructure in
spring-webincludingHttpMessageReaderandHttpMessageWriterthat build on and delegate toEncoderandDecoder; serverHttpHandlerwith adapters to (non-blocking) runtimes such as Servlet 3.1+ containers, Netty, and Undertow;WebFilter,WebHandlerand other non-blocking contract alternatives to Servlet API equivalents. -
@Controllerstyle, annotation-based, programming model, similar to Spring MVC, but supported in WebFlux, running on a reactive stack, e.g. capable of supporting reactive types as controller method arguments, never blocking on I/O, respecting backpressure all the way to the HTTP socket, and running on extra, non-Servlet containers such as Netty and Undertow. - New functional programming model ("WebFlux.fn") as an alternative to the
@Controller, annotation-based, programming model -- minimal and transparent with an endpoint routing API, running on the same reactive stack and WebFlux infrastructure. - New
WebClientwith a functional and reactive API for HTTP calls, comparable to theRestTemplatebut through a fluent API and also excelling in non-blocking and streaming scenarios based on WebFlux infrastructure; in 5.0 theAsyncRestTemplateis deprecated in favor of theWebClient.
- Null-safe API when using Kotlin 1.1.50 or higher.
- Support for Kotlin immutable classes with optional parameters and default values.
- Functional bean definition Kotlin DSL.
- Functional routing Kotlin DSL for WebFlux.
- Leveraging Kotlin reified type parameters to avoid specifying explicitly the
Classto use for serialization/deserialization in various APIs likeRestTemplateor WebFlux APIs. - Kotlin null-safety support for
@Autowired/@Injectand@RequestParam/@RequestHeader/etc annotations in order to determine if an injection point or handler method parameter is required or not. - Kotlin script support in
ScriptTemplateViewfor both Spring MVC and Spring WebFlux. - Array-like setters added to
Model,ModelMapandEnvironment. - Support for Kotlin autowired constructor with optional parameters.
- Kotlin reflection is used to determine interface method parameters.
- Complete support for JUnit 5's Jupiter programming and extension models in the Spring TestContext Framework.
-
SpringExtension: an implementation of multiple extension APIs from JUnit Jupiter that provides full support for the existing feature set of the Spring TestContext Framework. This support is enabled via@ExtendWith(SpringExtension.class). -
@SpringJUnitConfig: a composed annotation that combines@ExtendWith(SpringExtension.class)from JUnit Jupiter with@ContextConfigurationfrom the Spring TestContext Framework. -
@SpringJUnitWebConfig: a composed annotation that combines@ExtendWith(SpringExtension.class)from JUnit Jupiter with@ContextConfigurationand@WebAppConfigurationfrom the Spring TestContext Framework. -
@EnabledIf: signals that the annotated test class or test method is enabled if the supplied SpEL expression or property placeholder evaluates totrue. -
@DisabledIf: signals that the annotated test class or test method is disabled if the supplied SpEL expression or property placeholder evaluates totrue.
-
- Support for parallel test execution in the Spring TestContext Framework.
- New before and after test execution callbacks in the Spring TestContext Framework with support for TestNG, JUnit 5, and JUnit 4 via the
SpringRunner(but not via JUnit 4 rules).- New
beforeTestExecution()andafterTestExecution()callbacks in theTestExecutionListenerAPI andTestContextManager.
- New
-
MockHttpServletRequestnow hasgetContentAsByteArray()andgetContentAsString()methods for accessing the content (i.e., request body). - The
print()andlog()methods in Spring MVC Test now print the request body if the character encoding has been set in the mock request. - The
redirectedUrl()andforwardedUrl()methods in Spring MVC Test now support URI templates with variable expansion. - XMLUnit support upgraded to 2.3.