- 18 Nov, 2014 3 commits
-
-
Andy Wilkinson authored
Previously, for a non-async response with a successful status (< 400), ErrorPageFilter would always call flushBuffer. This triggers an exception in Tomcat if the client has closed the connection before the response has been fully sent. In this case, Tomcat treats the response as successful and commits it before control returns to the filter. This commit updates ErrorPageFilter to only perform the flush if the response has not already been committed, leaving any further flushing that may be necessary to be handled by the servlet container. Fixes gh-1938
-
Phillip Webb authored
Update ConfigurationPropertiesReportEndpoint to find @ConfigurationProperties using `context.findAnnotationOnBean` rather than `AnnotationUtils.findAnnotation`. This will correctly find the annotation even if the bean is an interface based proxy. Fixes gh-1927
-
Phillip Webb authored
Switch from external docbook XSLT to those shipped as part of the Maven plugin. Fixes gh-1942
-
- 14 Nov, 2014 2 commits
-
-
Phillip Webb authored
Relax the servlet version check in Maven integration tests. See gh-1797
-
Phillip Webb authored
Fixes gh-1797
-
- 12 Nov, 2014 2 commits
-
-
Phillip Webb authored
-
Spring Buildmaster authored
-
- 11 Nov, 2014 17 commits
-
-
Phillip Webb authored
-
Andy Wilkinson authored
-
Phillip Webb authored
Fixes gh-1874
-
Andy Wilkinson authored
Closes gh-1785
-
Andy Wilkinson authored
Closes gh-1893
-
Andy Wilkinson authored
The exception message for a connection timeout has been updated to include the timeout period. The tests for the sample have been updated accordingly. Closes gh-1884
-
Andy Wilkinson authored
Closes gh-1883
-
Andy Wilkinson authored
Closes gh-1882
-
Andy Wilkinson authored
Closes gh-1881
-
Andy Wilkinson authored
Closes gh-1880
-
Andy Wilkinson authored
Closes gh-1879
-
Andy Wilkinson authored
Closes gh-1878
-
Andy Wilkinson authored
Closes gh-1877
-
Andy Wilkinson authored
Closes gh-1876
-
Andy Wilkinson authored
Closes gh-1875
-
Phillip Webb authored
Fixes gh-1712
-
Phillip Webb authored
Update MultipartAutoConfiguration to detect any MultipartResolver beans rather than just StandardServletMultipartResolvers. Fixes gh-1857
-
- 10 Nov, 2014 6 commits
-
-
Michael Cramer authored
Closes gh-1863
-
Michael Cramer authored
Closes gh-1862
-
Andy Wilkinson authored
Closes gh-1739
-
Andy Wilkinson authored
If a Gradle build is using the Spring Boot Gradle plugin's support for declaring dependencies without versions then they will be unable to publish Maven artifacts from the build as the Gradle-generated pom will fail to validate. This is because Gradle doesn't apply the Boot-provided dependency versions to the dependencies in the generated pom. This can be addressed by configuring Gradle to generate a pom that either imports spring-boot-dependencies into its dependency management or that uses spring-boot-starter-parent as its parent. This commit updates the documentation to document the need for this configuration and to provide examples of how to do so. Closes gh-1806
-
Andy Wilkinson authored
Traditionally, a @ServerEndpoint-annotated bean is found by a servlet container initialiser, however Boot does not run servlet container initialisers when an embedded container is being used. To be able to use @ServerEndpoint in a Boot app that uses embedded Tomcat a ServerEndpointExporter bean must be declared. This commit updates the documentation to describe this requirement and also updates the WebSockets sample to illustrate the use of ServerEndpointExporter. The version of Spring Framework has been updated to 4.0.8.BUILD-SNAPSHOT. This picks up the fix for SPR-12340. Closes gh-1722
-
Andy Wilkinson authored
Closes gh-1861
-
- 07 Nov, 2014 1 commit
-
-
Phillip Webb authored
Relocate tomcat-embed-websocket from spring-boot-starter-websocket to spring-boot-starter-tomcat. Fixes gh-1847
-
- 06 Nov, 2014 1 commit
-
-
Phillip Webb authored
Fixes gh-1834
-
- 05 Nov, 2014 2 commits
-
-
Phillip Webb authored
Fix an issue where debug logging never occurred because it was guarded incorrectly using isWarnEnabled(). Fixes gh-1780
-
Phillip Webb authored
Some were missing, some were named incorrectly. See gh-1827
-
- 02 Nov, 2014 2 commits
-
-
Phillip Webb authored
Update ManagementSecurityAutoConfiguration to return IgnoredPathsWebSecurityConfigurerAdapter rather than WebSecurityConfigurer<WebSecurity>.
-
Phillip Webb authored
-
- 01 Nov, 2014 1 commit
-
-
Dave Syer authored
Instead of just blindly creating the default authentication manager, after thic change we count the beans of type GlobalAuthenticationManagerConfigurer and assume that if we detect more than we expect (one from Boot and one from Spring Security) then the user is telling us they want to configure the AuthenticationManager themselves. Fixes gh-1801
-
- 30 Oct, 2014 1 commit
-
-
Andy Wilkinson authored
GroovyWebConfiguration creates a GroovyTemplateViewResolver which is a UrlBasedViewResolver sub-class. UrlBasedViewResolver is provided by spring-webmvc. Previously, if a user configured a web application but did not have spring-webmvc on the classpath, the application would fail to start with a NoClassDefFoundError for UrlBasedViewResolver. This commit makes GroovyWebConfiguration conditional on UrlBasedViewResolver being on the classpath so that it backs of in the absence of spring-webmvc. Fixes gh-1793
-
- 29 Oct, 2014 2 commits
-
-
Andy Wilkinson authored
Closes gh-1787
-
Andy Wilkinson authored
Closes gh-1774
-