-
Notifications
You must be signed in to change notification settings - Fork 40.7k
Spring Boot 1.3.0 M5 Release Notes
No special steps are required to upgrade from earlier Spring Boot 1.3 milestones. See the instructions in the M1 release notes for upgrade from 1.2.x.
By default Spring Boot will now log the root cause of an exception first instead of the standard "root cause last". If you prefer the root cause to be last you can either set logging.exception.conversion.word=wex
in your application.properties
or use custom logging configuration.
Tomcat’s RemoteIpValve
is now configured and enabled to support x-forwarded-for
and x-forwarded-proto
headers. If you want to disable RemoteIpValve
set server.tomcat.remote-ip-header
and server.tomcat.protocol-header
to empty strings.
-
Log4JLoggingSystem
is now deprecated following Apache’s EOL declaration for log4j 1.x.
Tip
|
Check the configuration changelog for a complete overview of the changes in configuration. |
When using an embedded servlet container, automatic registration of @WebServlet
, @WebFilter
, and @WebListener
annotated classes can now be enabled using @ServletComponentScan
.