- 31 Mar, 2015 2 commits
-
-
Spring Buildmaster authored
-
Phillip Webb authored
This reverts commit 3a22443f.
-
- 30 Mar, 2015 9 commits
-
-
Phillip Webb authored
Add a note to the logging documentation to point out a potential gotcha. Fixes gh-2709
-
Dave Syer authored
The property in XADataSourceAutoConfigurationTests should be `data-source-class-name`. Previously the `-name` was missing.
-
Dave Syer authored
Update RelaxedDataBinder so that multiple overlapping nested property names can be bound to a Map. Prior to this commit, properties of the following form could not be bound to Maps: foo: baz foo.bar: spam This was due to BeanWrapperImpl throwing an InvalidPropertyException when binding `map[foo][bar]` because `foo` is already bound to `baz`. The updated code now detects such cases and instead uses the binding property `map[foo.bar]`. Fixes gh-2610
-
Phillip Webb authored
-
Phillip Webb authored
-
Marcin Zajączkowski authored
(cherry-picked from commit 99f1c7bf)
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-2723
-
Andy Wilkinson authored
Tomcat uses the strings “on” and “off” to enable and disable compression. YAML interprets on as true and off as false, leaving ServerProperties.Tomcat.compression configured with “true” and “false” respectively. One solution is to use “on” rather than on and “off” rather than off in the YAML file but users may not realise that they need to do so. This commit updates the connector customiser that configures compression to map “true” to “on” and “false” to “off”. Closes gh-2737
-
- 26 Mar, 2015 19 commits
-
-
Andy Wilkinson authored
When configured with a context path of "", Undertow 1.1.3 changes the context path to be "/". The change [1] was made to fix UNDERTOW-350 [2]. [1] https://github.com/undertow-io/undertow/commit/3db7707b8b34095d8d2fafecf94a10d101c62320 [2] https://issues.jboss.org/browse/UNDERTOW-350 See gh-2732
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-2670
-
Andy Wilkinson authored
Closes gh-2732
-
Andy Wilkinson authored
Closes gh-2730
-
Andy Wilkinson authored
Closes gh-2731
-
Andy Wilkinson authored
Conflicts: spring-boot-dependencies/pom.xml
-
Andy Wilkinson authored
gh-2735
-
Andy Wilkinson authored
Closes gh-2733
-
Andy Wilkinson authored
Closes gh-2729
-
Andy Wilkinson authored
Closes gh-2734
-
Andy Wilkinson authored
Conflicts: spring-boot-dependencies/pom.xml
-
Andy Wilkinson authored
Closes gh-2726
-
Andy Wilkinson authored
-
Andy Wilkinson authored
See gh-2718
-
Greg Turnquist authored
Closes gh-2718
-
Andy Wilkinson authored
Previously, the ErrorPageFilter was not invoked for async dispatches. This meant that an error that was set during an async dispatch would go undetected and a 200 response with an empty body would be returned. This commit updates ErrorPageFilter to configure its OncePerRequestFilter so that async dispatches are filtered and the correct error handling is performed. Closes gh-2711
-
Andy Wilkinson authored
Remove unwanted System.out.println call
-
Stephane Nicoll authored
Closes gh-2702
-
- 25 Mar, 2015 5 commits
-
-
Phillip Webb authored
Update SpringApplicationContextLoader so that the MockServletContext uses FileSystemResourceLoader. This allows `/src/main/webapp` folder to be found. See gh-2654
-
Andy Wilkinson authored
Previously, SpringBootWebSecurityConfiguration required a web application and @EnableWebSecurity to be on the classpath. @EnableWebSecurity is in spring-security-config so this could lead to the configuration being active when spring-security-web isn't on the classpath but the rest of Spring Security is. This commit updates SpringBootWebSecurityConfiguration to also make it conditional on a class in spring-security-web. Fixes gh-2717
-
Phillip Webb authored
-
Phillip Webb authored
Add an additional constructor to ServletRegistrationBean that indicates if a URL mapping is always required. If set to false, the registration will not longer use the default '/*' mapping. Fixes gh-2596
-
Phillip Webb authored
Fixes gh-2598
-
- 24 Mar, 2015 5 commits
-
-
Phillip Webb authored
Update SystemPublicMetrics to silently ignore ManagementFactory NoClassDefFoundErrors which can occur when deploying to Google App Engine. Fixes gh-2701
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
* vcap-service-numbers: Support VcapApplicationListener Number Credentials
-
Ben Hale authored
Update VcapApplicationListener to support Number based credentials. Previously, any service credential value that wasn't a String would be discarded. This was particularly a problem for services that exposed a port as a JSON Number. This change takes numbers in the credential payload into account, converting them to Strings so that they will pass through the properties system properly. There's no real downside to this as Spring will coerce them back into Numbers if needed by an application. Fixes gh-2707
-