- 22 Sep, 2015 4 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-3913
-
- 21 Sep, 2015 11 commits
-
-
Phillip Webb authored
Exclude spring-boot-starter-validation since those jars are provided by the container.
-
Phillip Webb authored
Update the spring-boot-autoconfigure POM so that jackson-module-parameter-names is optional. See gh-3804
-
Phillip Webb authored
-
Phillip Webb authored
-
Andy Wilkinson authored
The parameter names module allows users of Java 8 that have compiled their code with the -parameters option to avoid the name for annotations to map the json onto constructor and method parameters with the names of the parameters being used instead. This commit adds auto-configuration for the module that will only be enabled when running on Java 8. Closes gh-3804
-
Andy Wilkinson authored
See gh-3900
-
Andy Wilkinson authored
Previously, dev tools would restart the application when any .class file changed. This included test classes. This commit updates the default excludes to ignore any classes with a name that ends in Test.class or Tests.class. Closes gh-3900
-
Andy Wilkinson authored
For the character encoding filter to work, it's vital that it sets the request's encoding before any other filters attempt to read the request. This commit updates the order of OrderedCharacterEncodingFilter to be HIGHEST_PRECEDENCE and improves the existing test to check that the ordering is as required. Closes gh-3912
-
Andy Wilkinson authored
Closes gh-3902
-
Andy Wilkinson authored
The recommended usage for the java executable is: java [-options] -jar jarfile [args...] This commit updates the default launch script to match this recommended usage by moving -jar to be the last option, after both the disableJarChecking system property and any JAVA_OPTS. Closes gh-3930
-
Andy Wilkinson authored
Closes gh-3913
-
- 16 Sep, 2015 4 commits
-
-
Phillip Webb authored
-
Spring Buildmaster authored
-
Stephane Nicoll authored
* pr/3967: Polish Javadoc
-
izeye authored
Closes gh-3967
-
- 15 Sep, 2015 9 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
izeye authored
Closes gh-3943
-
Andy Wilkinson authored
-
Andy Wilkinson authored
See gh-3964
-
Andy Wilkinson authored
-
Andy Wilkinson authored
- Rename local variable to avoid shadowing field with the same name - Add a test to verify that local.mongo.port is set on the parent context Closes gh-3955
-
Paweł Doleciński authored
Previously, a StackOverflowError would occur when using a random port for embedded mongo as the logic for propagating the property up the context hierarchy would repeatedly use the leaf context's parent. This commit updates the logic to look to see if the current context has a parent, only calling the method again if it does. Closes gh-3956
-
Andy Wilkinson authored
-
- 13 Sep, 2015 2 commits
-
-
Stephane Nicoll authored
* pr/3946: Polish tests
-
izeye authored
Closes gh-3946
-
- 11 Sep, 2015 10 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
Update SpringBootServletInitializer with a registerErrorPageFilter flag that can be used to disable ErrorPageFilter registration. Fixes gh-3603
-
Phillip Webb authored
Update ErrorPageFilter to only handle errors when `response.sendError` has been called. This should allow custom @ExceptionHandlers to completely handle errors and return custom status codes without triggering the "Cannot forward to error page" log message. The Javadoc for sendError states: "The server defaults to creating the response to look like an HTML-formatted server error page containing the specified message" Where as setStatus states "This method is used to set the return status code when there is no error " Fixes gh-2745
-
Phillip Webb authored
Update `spring-boot-sample-tomcat-jsp` to include endpoints that trigger exceptions. Primarily to aid testing of the ErrorPageFilter. See gh-2745
-
Stephane Nicoll authored
* pr/3936: Polish contribution Expose actuator endpoints for flyway and liquibase
-
Stephane Nicoll authored
Closes gh-3936
-
Eddú Meléndez authored
Update the samples to expose the relevant actuator endpoint. Closes gh-3935
-
Stephane Nicoll authored
Closes gh-3944
-
Stephane Nicoll authored
Closes gh-3940
-
Phillip Webb authored
-