- 07 Apr, 2016 17 commits
-
-
Andy Wilkinson authored
Closes gh-5629
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-5623: Upgrade to Spring Data Hopper SR1
-
Eddú Meléndez authored
Closes gh-5623
-
Andy Wilkinson authored
When @ConditionalOnBean or @ConditionalOnMissingBean are used on a @Bean method, they will, in the absence of any other configuration, attempt to deduce the bean's type by examining the method's return type. This deduction can fail. See gh-4841, gh-4934, and gh-5624 for some examples of possible failure causes. Previously, this failure was only logged as a debug message leaving the user with a misleading message suggesting that the @ConditionalOnBean or @ConditionalOnMissingBean annotation was not configured correctly. This commit improves the diagnostics by mention the possibility of type deduction in the exception message and including the exception that caused deduction to fail as the cause. Closes gh-4934
-
Andy Wilkinson authored
TestPropertySourcesInitializer needs to be ordered with a high precedence, specifically higher than ContextIdApplicationContextInitializer, to ensure that any properties used in setting the context’s id are available in the environment. Closes gh-4828
-
Dave Syer authored
The Mustache support should still be usable outside a web application because the properties only use web stuff in that context and don't have any field or method signatures that depend on web. Fixes gh-5626
-
Andy Wilkinson authored
This commit updates the precedence of properties configured using @SpringBootTest to align with @TestPropertySource. Properties configured using properties on @SpringBootTest are now added to the same property source as those configured using properties on @TestPropertySource so the precedence described in the javadoc of @TestPropertySource now applies in full. Additionally, if both @TestPropertySource properties and @SpringBootTest properties configure the same property, the value from @TestPropertySource will win. Closes gh-4828
-
Stephane Nicoll authored
* pr/5622: Add dependency jackson-module-kotlin
-
Eddú Meléndez authored
Auto-detection for Kotlin Jackson Module was added in Spring 4.3.0.RC1. This commit provides the dependency management to handle the right version. Closes gh-5622
-
Phillip Webb authored
Closes gh-5552
-
Phillip Webb authored
Refine the log directory logic used by Narayana so that it is consistent with Atomikos and Bitronix. See gh-5552
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
* spring-boot-starter-jta-narayana: Polish contribution Add Narayana JTA support
-
Phillip Webb authored
-
Gytis Trikleris authored
Add support for JBoss Narayana. Fixes gh-5552
-
- 06 Apr, 2016 23 commits
-
-
Phillip Webb authored
-
Phillip Webb authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-5289: Polish contribution Update JarURLConnection to support jar:file://… URLs
-
Andy Wilkinson authored
-
file://…Vladimir Tsanev authored
Previously, JarURLConnection would fail when created with a URL that began with jar:file:// as the double-slash is not included in jarFile.getUrl().getFile(). This commit updates JarURLConnection to normalise the value return from url.getFile() to remove a double-slash when present. Fixes gh-5287 Closes gh-5289
-
Andy Wilkinson authored
* gh-4361: Add dependency management for org.hibernate:hibernate-java8
-
Christopher Smith authored
Closes gh-4361
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-5397: Improve repeatability of launch script tests
-
Vedran Pavic authored
Previously, tags were used for CentOS and Ubuntu images that may change over time. This commit updates the Dockerfiles to use fixed base images. For Ubuntu, a fixed tag is available. For CentOS we have to resort to using the digest. Closes gh-5397
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-5394: Update launch.script so popd does not print directory name to stdout
-
Christian Brunotte authored
Closes gh-5394
-
Andy Wilkinson authored
-
Andy Wilkinson authored
* gh-5615: Remove a duplicate test
-
Johnny Lim authored
Closes gh-5615
-
Andy Wilkinson authored
Closes gh-5195
-
Stephane Nicoll authored
Closes gh-5616
-
Stephane Nicoll authored
* pr/5614: Polish
-
Johnny Lim authored
Closes gh-5614
-
Phillip Webb authored
* gh-4913: Allow per-http-method MetricsFilter submissions
-
sebastiankirsch authored
Add `endpoints.metrics.filter.gauge-submissions` and `endpoints.metrics.filter.counter-submissions` properties which can be used to fine-tune how MetricsFilter submits metrics. Use `per-http-method` to group by the the HTTP method, `merged` to combine or both (`merged,per-http-method`) to submit both in forms. Closes gh-5102
-