- 04 Apr, 2017 31 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8391
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-1666
-
Andy Wilkinson authored
Closes gh-2622
-
Andy Wilkinson authored
-
Andy Wilkinson authored
See gh-1666
-
Andy Wilkinson authored
Previously, the Spring Boot plugin would automatically apply the dependency management plugin and import the spring-boot-dependencies bom. This made it very difficult to use Spring Boot's plugin without also using its dependency management. It also made it difficult to see where the dependency management was coming from. This commit updates the Spring Boot plugin so that it no longer automatically applies the dependency management plugin. Instead, the plugin now reacts to the dependency management plugin being applied by importing the spring-boot-dependencies bom. Users that do not wish to use Spring Boot's dependency management capabilities can now do so by not applying the dependency management plugin. Closes gh-3164
-
Andy Wilkinson authored
Previously, the BootRepackage task would take the output of a Jar or War task and repackage it in a similar manner to Spring Boot's Maven plugin. This caused several problems in Gradle including broken up-to-date checks and a lack of configurability. See the issues referenced below for full details. This commit replaces BootRepackage with BootJar and BootWar for building executable jars and wars respectively. BootJar extends Gradle's standard Jar task and BootWar extends Gradle's standard War task. This means that terms of configuration, the creation of executable jars and wars is now as flexible as the creation of standards jars and wars. Closes gh-8167 Closes gh-8099 Closes gh-6846 Closes gh-5861 Closes gh-5393 Closes gh-5259 Closes gh-3931
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Stephane Nicoll authored
This commit ensures that the default proxying value matches the opinion we have applied for `@EnableTransactionManagement` Closes gh-8786
-
Andy Wilkinson authored
Closes gh-8801
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8623
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Previously, jars (either top-level or nested) in Zip64 format were treated as normal jar files. This would lead to a failure later on when an attempt was made to read an entry from the file. This commit updates the loader to fail fast when it encounters a Zip64 jar file. Such files are identified by the number of entries in the central directory end record being 0xFFFF. Closes gh-8735
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Previously, WelcomePageHandlerMapping would forward to index.html. This assumed that the static path pattern was always /**. If it had been customised to, for example, /foo/**, then the forward would still be to index.html and a 404 would result as the page is actually available at /foo/index.html. At first glance, it would appear that the forward should be made to foo/index.html. However, as it's a forward rather than a redirect, any relative URLs in the index.html page would then be resolved using / whereas they should be resolved using /foo/. This could be addressed by using a redirect rather than a forward, but we don't want to do that as it's more invasive and would require a roundtrip back to the client. Instead, this commit simply stops performing the forward when the static path pattern is not /**. Closes gh-8788
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8294
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-8497
-
Andy Wilkinson authored
Closes gh-8807
-
- 03 Apr, 2017 5 commits
-
-
Stephane Nicoll authored
-
Stephane Nicoll authored
This commit restore the disabling of datasource initialization that was accidently removed in db33a754 so that other tests aren't affected by it.
-
Stephane Nicoll authored
-
Stephane Nicoll authored
This commit makes sure that `@EnableTransactionManagement` is auto-configured with Neo4j. It actually reuses what was done in #8434, making sure that the `Neo4jDataAutoConfiguration` is ordered properly. Closes gh-8587
-
Stephane Nicoll authored
Previously to this commit, transaction management was only enabled when a `DataSource` is configured. The processing of `@Transactional` annotations are now enabled as long as a `PlatformTransactionManager` is present. Also, the `spring.aop.proxy-target-class` is now honoured if set, still defaulting to CGLIB mode. Closes gh-8434
-
- 02 Apr, 2017 3 commits
-
-
Stephane Nicoll authored
* pr/8618: Polish "Add @DataNeo4jTest" contribution Add @DataNeo4jTest
-
Stephane Nicoll authored
Closes gh-8618
-
Eddú Meléndez authored
This commit adds test infrastructure for Neo4j repositories through `@DataNeo4jTest`. See gh-8618
-
- 01 Apr, 2017 1 commit
-
-
Stephane Nicoll authored
* pr/8791: Update doc for add-application-context-header
-