- 08 Dec, 2014 4 commits
-
-
Phillip Webb authored
Add a tip for both the Maven and Gradle "Packaging executable jar and war files" section referring to the how-to. Fixes gh-2086
-
Phillip Webb authored
See gh-2080
-
Phillip Webb authored
-
Stephane Nicoll authored
Partly back port changes from affb202e and 85c95744 to fix the usage of JMS in the CLI. Restore the integration test using HornetQ and fix the coordinates of the JMS API. Fixes gh-2075
-
- 05 Dec, 2014 2 commits
-
-
Phillip Webb authored
Extract some of the common property keys as constants. Fixes gh-2068
-
kakawait authored
Replace `classpath:db/migrations` with `classpath:db/migrations`. Fixes gh-2063
-
- 02 Dec, 2014 1 commit
-
-
Andy Wilkinson authored
SecurityAutoConfiguration, via its import of AuthenticationManagerConfiguration, requires spring-security-config to be on the classpath as AuthenticationManagerConfiguration extends GlobalAuthenticationConfigurerAdapter from spring-security-config. This commit makes SecurityAutoConfiguration conditional on the presence of GlobalAuthenticationConfigurerAdapter so that the auto-configuration will be disabled in its absence rather than causing an app to fail to start. Closes gh-2046
-
- 01 Dec, 2014 4 commits
-
-
Phillip Webb authored
See gh-1995
-
Phillip Webb authored
Change the visibility of ErrorPageFilter to public to fix IllegalAccessException errors on certain servlet containers. Fixes gh-2026
-
Phillip Webb authored
Use putIfAbsent to ensure atomic creation of lock objects. Fixes gh-1995
-
Phillip Webb authored
-
- 26 Nov, 2014 2 commits
-
-
Andy Wilkinson authored
Previously, the host had to have a custom value for the configuration of the port or credentials (username and password) to take effect. This meant, for example, that you couldn’t just set the port or just set the username and password while using the default host. This commit allows the port or username and password to be configured without also configuring the host. The default host (localhost) and port (27017) are retained. Fixes gh-2008
-
Andy Wilkinson authored
-
- 25 Nov, 2014 5 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-1989
-
Sjoerd Mulder authored
In a properties file, a backslash is used as an escape character for the line terminator sequence to allow values to be split across multiple lines. When a backslash is used elsewhere they're stripped out of the property's value. This commit updates .properties-based examples for configuring server.tomcat.internal-proxies to escape the backslahes so that they are retained in the property's value at runtime. See gh-1989
-
Andrea Vacondio authored
Closes gh-1998
-
Andy Wilkinson authored
Closes gh-1908
-
- 24 Nov, 2014 1 commit
-
-
Andy Wilkinson authored
Previously, index.html used absolute paths to load its CSS and JavaScript. This meant that it had to be deployed to /. This commit updates the HTML to use relative paths for its CSS and JavaScript, thereby ensuring that they can be loaded irrespective of the context path to which the application is deployed. Closes gh-1988
-
- 20 Nov, 2014 4 commits
-
-
Michael Freedman authored
(cherry picked from commit d4bf221f)
-
Brian Clozel authored
Fixes a couple of typos in the documentation: * `x-forwarded-protocol` is not the standard name for this header * `require_https` is not an existing property, but rather `require_ssl`
-
Dave Syer authored
Some environments do not have a tmpdir so it can be null.
-
Andy Wilkinson authored
Previously, if Logback was being used as Boot's logging system, but Log4J was also on the classpath before SLF4J and Logback, JBoss Logging would use Log4J for its logging. This lead to warning messages being produced as Log4J was not configured: log4j:WARN No appenders could be found for logger (org.jboss.logging). log4j:WARN Please initialize the log4j system properly. This commit updates LogbackLoggingSystem to set the org.jboss.logging.provider to "slf4j". This ensure that JBoss Logging will use SLF4J and Logback as intended even when Log4J is also on the classpath. Closes gh-1928
-
- 19 Nov, 2014 1 commit
-
-
Phillip Webb authored
Add LICENSE.txt file and make it clear in the README file that we are Apache 2.0 Fixes gh-1952
-
- 18 Nov, 2014 12 commits
-
-
Andy Wilkinson authored
-
Phillip Webb authored
Fixes gh-1948
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-1919
-
Nicolás J. García authored
Previously, only the http.mappers.json-sort-keys property was applied by JacksonAutoConfiguration. This commit updates it to also apply the http.mappers.json-pretty-print property as well. See #1919
-
Andy Wilkinson authored
Closes gh-1936
-
Andy Wilkinson authored
Closes gh-1906
-
Andy Wilkinson authored
Closes gh-1905
-
Andy Wilkinson authored
Fixes gh-1944
-
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
-