- 25 Nov, 2016 2 commits
-
-
Stephane Nicoll authored
This commit makes sure that the `skip` command-line property can be used for all goals of the maven plugin. A dedicated sample for integration tests has also been added as this change may confuse users, especially those who wish to skip a certain goal and not the plugin execution altogether. Closes gh-7313
-
Stephane Nicoll authored
This commit deprecates `server.max-http-post-size` and introduces a dedicated property for each supported container. In particular, Undertow can now define a max size higher than 2GB. Closes gh-7362
-
- 24 Nov, 2016 16 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Closes gh-7476
-
Stephane Nicoll authored
This commit auto-configures `MethodValidationPostProcessor` if necessary when a JSR-303 validator implementation is detected on the classpath. Closes gh-6228
-
Stephane Nicoll authored
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/7462: Polish contribution Fix undertow session persistence with spring-boot-devtools
-
Stephane Nicoll authored
Closes gh-7462
-
Peter Leibiger authored
Fixes gh-7460
-
Stephane Nicoll authored
-
Stephane Nicoll authored
If `OnBeanCondition` is used with a `String` literal representing the fully qualified name of a bean and such type does not exist, it gracefully manages it as if it was not found. Prior to this commit, an exception would be thrown if any related class such as the parent class does not exist. This commit handles this additional case, catching `NoClassDefFoundError` the same way it did handle `ClassNotFoundException`. That way, a missing type will now be considered as absent if it's not on the classpath. Closes gh-7459
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Previously, two or more `@DataJpaTest` tests in the same test suite were sharing the same in-memory database instance. This commit makes sure that `TestDatabaseAutoConfiguration` creates a unique embedded database for each test it operates on. Closes gh-7473
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-7463
-
Stephane Nicoll authored
-
Stephane Nicoll authored
This commit reverts 7e2d0fd1 so that the Couchbase auto-configuration can work without Spring Data again. It also removes the `Class` reference to a Spring Data class to a `String` reference to make sure the condition operates properly when said class isn't on the classpath. Closes gh-7453
-
- 23 Nov, 2016 10 commits
-
-
Stephane Nicoll authored
Closes gh-7320
-
Eddú Meléndez authored
This commit allows to configure special customizers to be used by Cluster. Closes gh-7312
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Consider the following two URLs: jar:file:/test.jar!/BOOT-INF/classes!/foo.txt jar:file:/test.jar!/BOOT-INF/classes/foo.txt They both reference the same foo.txt file in the BOOT-INF/classes directory of test.jar, however the first URL does so via the nested BOOT-INF/classes archive. Previously, this difference in the URLs would lead to PathMatchingResourcePatternResolver returning two resources for foo.txt when asked to find all resources matching the pattern classpath*:/**/*.txt. This commit updates our Handler that is used for jar: URLs to consider the two URLs above to be equivalent such that url1 is equal to url2 and the two urls will produce the same hash code. Closes gh-7449
-
Stephane Nicoll authored
* pr/7457: Polish upgrade to Spring Session 1.3.0.RC1 Upgrade Spring Session to 1.3.0.RC1
-
Stephane Nicoll authored
Closes gh-7457
-
Vedran Pavic authored
See gh-7457
-
Stephane Nicoll authored
Closes gh-7458
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-7452
-
- 22 Nov, 2016 12 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
Update `WebDriverScope` so that only `WebDriver` beans with no explicit scope are moved. Fixes gh-7454
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
Add guard to `CouchbaseAutoConfiguration` so ensure that Spring Data Couchbase is on the classpath. Fixes gh-7453
-
Phillip Webb authored
* pr/7425: Add additional Tomcat timeout test Fix connector used to configure connection timeout
-
Phillip Webb authored
Update the Tomcat sample to also test that the connection timeout is set. See gh-7425
-
Grigory Fadeev authored
Fix Tomcat customization so that the main connection is configured with any timeout. Closes gh-7425
-
Phillip Webb authored
Update @MockBean support so that FactoryBean classes can be mocked. Fixes gh-7439
-
Phillip Webb authored
Fix `TestRestTemplate` so that any custom `ErrorHandler` isn't lost when calling `withBasicAuth`. Fixes gh-7441
-
Andy Wilkinson authored
* gh-6957: Update Docker images used by launch script integration tests
-
Vedran Pavic authored
-