-
Notifications
You must be signed in to change notification settings - Fork 34
Update Spring Boot to 1.4 #413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
dependency/spring
Task is related to Spring Framework
impact/deploy
Manual actions will be required during deployment
kind/dependency-update
Update one of dependencies
Milestone
Comments
php-coder
added a commit
that referenced
this issue
Aug 22, 2016
We have to migrate from log4j because it reached its End Of Life and also unsupported by Spring Boot 1.4 Addressed to #413
php-coder
added a commit
that referenced
this issue
Aug 22, 2016
After switching to logback tests started to print a lot of debugging information because logger wasn't configured and debug level was being used by default. @see http://docs.spring.io/spring-boot/docs/1.3.7.RELEASE/reference/html/howto-logging.html#howto-configure-logback-for-logging Should be in 7505a02 commit. Addressed to #413
cssru
pushed a commit
to cssru/mystamps
that referenced
this issue
Aug 24, 2016
We have to migrate from log4j because it reached its End Of Life and also unsupported by Spring Boot 1.4 Addressed to php-coder#413
php-coder
added a commit
that referenced
this issue
Jan 13, 2017
See also spring-boot GH 4223 Addressed to #413 No functional changes.
php-coder
added a commit
that referenced
this issue
Mar 26, 2017
…embedded servlet container. Details: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#errorpageregistry Addressed to #413 No functional changes.
php-coder
added a commit
that referenced
this issue
May 13, 2017
DataSourceConfiguration has already enabled data source validation. See also spring-boot GH 4906 Addressed to #413 No functional changes.
php-coder
added a commit
that referenced
this issue
May 13, 2017
We can't enable it everywhere because in test and travis environments there is no mail server during application startup. Addressed to #413 [ci skip]
php-coder
added a commit
that referenced
this issue
May 13, 2017
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#miscellaneous See also Spring Boot GH 5641 Addressed to #413 No functional changes.
Done! |
bodom91
pushed a commit
to bodom91/mystamps
that referenced
this issue
Aug 2, 2017
See also spring-boot GH 4223 Addressed to php-coder#413 No functional changes.
bodom91
pushed a commit
to bodom91/mystamps
that referenced
this issue
Aug 2, 2017
…embedded servlet container. Details: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#errorpageregistry Addressed to php-coder#413 No functional changes.
bodom91
pushed a commit
to bodom91/mystamps
that referenced
this issue
Aug 2, 2017
DataSourceConfiguration has already enabled data source validation. See also spring-boot GH 4906 Addressed to php-coder#413 No functional changes.
bodom91
pushed a commit
to bodom91/mystamps
that referenced
this issue
Aug 2, 2017
We can't enable it everywhere because in test and travis environments there is no mail server during application startup. Addressed to php-coder#413 [ci skip]
bodom91
pushed a commit
to bodom91/mystamps
that referenced
this issue
Aug 2, 2017
https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-1.4-Release-Notes#miscellaneous See also Spring Boot GH 5641 Addressed to php-coder#413 No functional changes.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependency/spring
Task is related to Spring Framework
impact/deploy
Manual actions will be required during deployment
kind/dependency-update
Update one of dependencies
Uh oh!
There was an error while loading. Please reload this page.
pom.xml
mvn clean verify
Started ApplicationBootstrap in 5.439 seconds (JVM running for 17.448)
,Total time: 01:08 min
Started ApplicationBootstrap in 5.617 seconds (JVM running for 17.846)
,Total time: 01:43 min
)@GetMapping
/@PostMapping
and deny to import@RequestMapping
-Dspring.jndi.ignore=true
(or Spring Boot GH 4710 and SPR-14518) (resolution: it doesn't affect us becausejetty-jndi
is excluded by default in new version of Spring Boot)@Autowired
because of https://jira.spring.io/browse/SPR-12278 ?)mvcMatchers
?)multipart.*
tospring.http.multipart.*
(Spring Boot GH 3044)spring.datasource
properties (Spring Boot GH 2183)ErrorMvcAutoConfiguration
that we've excluded)MailSenderValidatorAutoConfiguration did not match: @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection'
)@SpringBootTest
/@WebMvcTest
server.max-http-header-size
/server.max-http-post-size
? (Spring Boot GH Pull 5641)server.jetty.acceptors
/server.jetty.selectors
. For example, for test profile, we could use small value (Spring Boot GH Pull 5649) (resolution: after setting these properties to 1, the total amount of threads didn't change -- number of selectors threads decreased but the number of qtp threads grown)ErrorPage
import (Spring Boot GH 6764)spring.mvc.dispatch-options-request: false
(Spring Boot GH 5965) (resolution: if we disable it, OPTIONS method still will be handled but the response would be incorrect because the response will show that all possible methods are allowed)@RequestAttribute
ErrorPageRegistry
The text was updated successfully, but these errors were encountered: