- 15 Dec, 2016 2 commits
-
-
Stephane Nicoll authored
This commit fixes the detection of JDBC urls for DB2 AS400, Firebird and Informix. Closes gh-7651
-
Stephane Nicoll authored
Closes gh-7620
-
- 14 Dec, 2016 4 commits
-
-
Stephane Nicoll authored
* pr/7596: Update production-ready-features.adoc
-
Johannes Harth authored
Replace line break with missing line fold "\\\n" to continue the property value. Closes gh-7596
-
Andy Wilkinson authored
This reverts commit 727d6262. Sigh, although the SPR issue is complete the change hasn't been backported yet.
-
Andy Wilkinson authored
See gh-7601
-
- 13 Dec, 2016 2 commits
-
-
Andy Wilkinson authored
Closes gh-7609
-
Andy Wilkinson authored
Closes gh-7606
-
- 12 Dec, 2016 1 commit
-
-
Stephane Nicoll authored
Closes gh-6980
-
- 08 Dec, 2016 4 commits
-
-
Andy Wilkinson authored
This reverts commit 47f1aeb5.
-
Andy Wilkinson authored
See gh-7602
-
Andy Wilkinson authored
See gh-7601
-
Andy Wilkinson authored
Closes gh-7595
-
- 05 Dec, 2016 2 commits
-
-
Madhura Bhave authored
Update `AbstractNestedCondition` to use an empty message for non Spring Boot nested conditions. Fixes gh-7519 Closes gh-7529
-
Phillip Webb authored
-
- 02 Dec, 2016 3 commits
-
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-7535: Quote $jarfile when creating arguments in launch script
-
Pei-Tang Huang authored
Previously, if the pathname of fully executable contained any space characters, the launch script would fail to locate the jar file This commit fixes this issue by quoting the jarfile. Closes gh-7535
-
- 01 Dec, 2016 6 commits
-
-
Andy Wilkinson authored
Closes gh-7548
-
Andy Wilkinson authored
Closes gh-1567
-
Stephane Nicoll authored
Previously, the health auto-configuration `AutoconfigureOrder` entry for couchbase was referring to the standard couchbase auto-configuration that is not responsible to configure the `CouchbaseOperations` bean. Yet, the health indicator implementation was relying on the presence of such a bean. This commit fixes the `AutoconfigureOrder` entry so that it refers to `CouchbaseDataAutoConfiguration` now. Closes gh-7543
-
Andy Wilkinson authored
Closes gh-7471
-
Andy Wilkinson authored
Closes gh-7503
-
Andy Wilkinson authored
See gh-7524
-
- 30 Nov, 2016 3 commits
-
-
Andy Wilkinson authored
Closes gh-7524
-
Stephane Nicoll authored
This commit uses standard files for libraries managed by the repackage goal of the Maven plugin. Previously, only the name of the file was used which could lead to duplicate libraries if the name of the target file deviates from the default. This typically happens when the `build.finalName` property is specified on a dependent module. Note that the `maven-war-plugin` has an additional mechanism to customize the file name structure of dependencies. This feature isn't supported by the repackage goal so an explicit mention has been added in the documentation. Closes gh-7389
-
Stephane Nicoll authored
Previously, if `spring.couchbase.bootstrap-hosts` was specified in YAML or with the `[Idx]` notation, the auto-configuration would not kick in. This is due to a limitation of `@ConditionalOnProperty` on a property of type Collection. This commit workarounds this limitation for now with a dedicated condition. Closes gh-7508
-
- 29 Nov, 2016 2 commits
-
-
Stephane Nicoll authored
* pr/7510: Remove redundant toString() invocation
-
Oscar Utbult authored
Closes gh-7510
-
- 28 Nov, 2016 3 commits
-
-
Phillip Webb authored
-
Andy Wilkinson authored
Closes gh-7496
-
Stephane Nicoll authored
Closes gh-7489
-
- 25 Nov, 2016 3 commits
-
-
Andy Wilkinson authored
* gh-7271: Test that a broken factory bean does not break resetting of mocks Prevent a broken factory bean from breaking the resetting of mocks
-
Andy Wilkinson authored
Previously, ResetMocksTestExecutionListener used getBean(name) to retrieve each instantiated singleton. When the instantiated singleton was a factory bean, this would cause getObject on the factory bean to be called. If the factory bean was unable to produce its object, for example due to test slicing excluding something, an exception would be thrown. The previous commit updated ResetMocksTestsExecutionListener to use getSingleton(name) rather than getBean(name). This will retrieve the factory bean itself rather than causing the factory bean to attempt to create an object. This commit updates the tests to verify the new behaviour. Closes gh-7270
-
Aleksander Bartnikiewicz authored
Closes gh-7271
-
- 24 Nov, 2016 5 commits
-
-
Andy Wilkinson authored
Closes gh-7476
-
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
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
-