- 04 Mar, 2015 2 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Previously repackaging of an archive was performed in three steps: 1. Write the manifest 2. Write entries from the source archive into the destination 3. Write any libraries into the destination if they’re not already there This worked fine for jar files, but not for war files. In the war file case the libraries are already in the source archive’s WEB-INF/lib directory so they’re copied into the destination in step 2. This means that step 3 largely becomes a no-op and, crucially, the UNPACK comment is not applied to any libraries that require it. This commit reorders steps 2 and 3 so that the libraries are copied into the destination first (allowing the UNPACK comment to be written, if required) and then any entries in the source are written into the destination if they’re not already there. Fixes gh-2588
-
- 03 Mar, 2015 2 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
MetricRegistryMetricReader’s fields where neither final, nor volatile but could be accessed on multiple threads. This lead to visibility problems where the value of a field would unexpectedly be null, causing an NPE. This commit updates all of the fields to declare them as final, thereby ensuring that their values are guaranteed to be visible across different threads. Fixes gh-2590
-
- 02 Mar, 2015 7 commits
-
-
Rob Winch authored
-
Rob Winch authored
-
Rob Winch authored
Fixes gh-2567
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
- 27 Feb, 2015 3 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
- 26 Feb, 2015 13 commits
-
-
Phillip Webb authored
-
Spring Buildmaster authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Spring Buildmaster authored
-
Phillip Webb authored
Closes gh-2539
-
Phillip Webb authored
Update SpringApplicationContextLoader to configure test property locations before the ApplicationContext is actually started. Fixes gh-2198
-
Andy Wilkinson authored
Previously, MongoProperties did not consider the configuration of a custom authentication database when creating a MongoClient. This commit updates MongoProperties to use the authentication database when it is configured, falling back to the normal database when it is not configured. Closes gh-2562
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* elasticsearch: Remove unnecessary if statement
-
izeye authored
-
Stephane Nicoll authored
* javadoc: Fix Javadoc
-
izeye authored
-
- 25 Feb, 2015 13 commits
-
-
Phillip Webb authored
Fixes gh-2443
-
Phillip Webb authored
Update SpringApplicationContextLoader to support @TestPropertySource location attributes. Fixes gh-2198
-
Phillip Webb authored
Add a `security.basic.authorize-mode` property that can be used to affect how basic security authorization is applied. Fixes gh-2462
-
Phillip Webb authored
Rename `spring.favicon.enabled` to `spring.mvc.favicon.enabled`. See gh-2377
-
Phillip Webb authored
* docs: Improve documentation
-
izeye authored
Closes gh-2553
-
Phillip Webb authored
-
Andy Wilkinson authored
Closes gh-2554
-
Phillip Webb authored
-
Phillip Webb authored
Closes gh-2242
-
Phillip Webb authored
Simplify the MustacheEnvironmentCollector so that it no longer binds the Spring Environment to a Map. See gh-2242
-
Phillip Webb authored
Provide details of how to configure Gradle, including the work-around require to parse any additional metadata files. Fixes gh-2316
-
Phillip Webb authored
Fix automatic '/' -> 'index.html' forwarding to also work when a `server.servlet-path` property is set. Fixes gh-2351
-