- 19 Mar, 2014 3 commits
-
-
Dave Syer authored
The most natural order is "more specific locations win". That way if a use has application.properties in the root of a JAR (as is normal), overrides can always be made on classpath:/config/application.properties (as well as file:./application.properties which has always been the case). Before this change properties in classpath:/config/* were over written by those in the root location, not the other way round. Fixes gh-527
-
Stephane Nicoll authored
This commit adds a documentation note explaining how to change the delimiters used to filter maven tokens as these conflict with the delimiters used by Spring (i.e. ${foo:default}).
-
Phillip Webb authored
-
- 18 Mar, 2014 29 commits
-
-
Phillip Webb authored
Fixes gh-471
-
Phillip Webb authored
Fixes gh-491
-
Phillip Webb authored
* doc-appendix: Review of the Appendix
-
Stephane Nicoll authored
This commit reviews the Appendix of the Spring boot doc, fixing mostly typos.
-
Phillip Webb authored
Change the initial fix for OSX Java 1.6 compatibility by removing the need for a direct `tools.jar` dependency. It appears that `system` dependencies are always pulled in when used in a Maven plugin. This makes the the dependency on `tools.jar` particularly brittle since we need to make assumptions about where the jar is located. Since the tools jar is *only* needed for Spring Loaded support, the plugin has now been updated to locate the jar programmatically and call it via reflection. This should reduce the risk of problems when using the plugin and at the very least isolate them to Spring Loaded support. (See original commit b8c47200) Fixes gh-497
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Fixes gh-525
-
Phillip Webb authored
-
Dave Syer authored
If user sets addresses it supercedes anything that was set in host or port (same as in the native ConnectionFactory). Fixes gh-524
-
Phillip Webb authored
* json-sort-keys: Add support for sorting json keys
-
Piotr Maj authored
Add `jsonSortKeys` property to HttpMapperProperties. Fixes gh-498
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Minoir polish for wrapping at 90 and tabs instead of spaces.
-
Stephane Nicoll authored
This commit reviews the How-to part of the Spring boot doc, fixing mostly typos. See gh-521
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
It is sufficient for most purposes (e.g. the ones PropertieLauncher needs) to only read the META-INF directory (not the whole file tree). So a quick fix is to make META-INF a special case when initializing non-recursive entries. Fixes gh-520
-
Dave Syer authored
-
Dave Syer authored
-
Andy Wilkinson authored
When repackaging an archive, the files in the resulting lib directory must be zip files. If they're not zip files, the resulting archive may fail to run (#324). The previous approach was to consider an artifact's type when deciding whether or not it should be packaged. The type is a string and, while there are a number of well-known values, it can essentially be anything. This caused a problem with an artifact incorrectly being identified as being unsuitable for inclusion (#489). This commit changes the approach. Rather than looking at an artifact's type, it looks at the first four bytes of the archive's file. Only if these header bytes matche that of a zip file is the artifact included. This is a better match for the requirement that all files in lib be zip files. Fixes #489
-
Dave Syer authored
Fixes gh-518
-
Dave Syer authored
Fixes gh-500
-
Dave Syer authored
Fixes gh-507
-
Dave Syer authored
Fixes gh-499
-
Greg Turnquist authored
-
Greg Turnquist authored
-
- 17 Mar, 2014 8 commits
-
-
Phillip Webb authored
Change working since test dependencies cannot easily be replaced.
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Remove quote-marks from internal documentation links and instead favor italics.
-
Phillip Webb authored
-
Phillip Webb authored
* docs: Review first 8 parts of the doc
-
Stephane Nicoll authored
This commit mostly fixes typos but also improves slightly specific areas, adding links when it make sense.
-