- 16 Sep, 2016 6 commits
-
-
Stephane Nicoll authored
This commit improves the startup error message so that it does not reference `--debug` anymore. Such command-line switch only works when the application is started using `java -jar`. The error message now refers directly to a section of the documentation that provides more details and links to more useful examples. Closes gh-6593
-
Stephane Nicoll authored
-
Stephane Nicoll authored
This commit fixes the documentation that wrongly states that SpringBootWebSecurityConfiguration is an auto-configuration. Rather than excluding this class, we should exclude SecurityAutoConfiguration that imports it. Closes gh-6861
-
Stephane Nicoll authored
Previously, if an injection point used a qualifier, `MockBean` and `SpyBean` couldn't be used to mock/spy it as there was no way to specify that qualifier information. This commit now detects qualifier information on the injection point and associate it with the created `BeanDefintion`. If one wants to mock a bean that is qualified with `@Qualifier("foo")`, the definition of the mock should be as follows: ``` public class MyTest { @MockBean @Qualifier("foo") private ExampleService service; } ``` As a side effect, it is now possible to mock a service by type even if there are multiple instances of that type in the application context. The provided qualifier information is used to determine the right candidate and the proper bean definition is replaced accordingly. Closes gh-6753
-
Phillip Webb authored
Change TestEntityManager so that entities with an ID can be persisted. Fixes gh-6546
-
Phillip Webb authored
See gh-6897
-
- 15 Sep, 2016 21 commits
-
-
Phillip Webb authored
Update detection logic to also consider `@Rules` classes. Also make the documentation a little clearer. Fixes gh-6768
-
Phillip Webb authored
Protect against the situation where no DataSource beans can be found at all. Fixes gh-6897
-
Phillip Webb authored
* pr/6882: Use default simple types with MongoMappingContext
-
Oliver Gierke authored
Change the auto-configure MongoMappingContext to use the SimpleTypesHolder instance `Set` that's produced by a CustomConversions bean, which we in turn now default, too. This update is necessary as `CustomConversions` registers converters by inspecting the classpath (to automatically detect Java 8, JodaTime etc.) and by that rendering the types for which we find converters for as simple ones, i.e. non-entities. Fixes gh-6881 Closes gh-6882
-
Phillip Webb authored
* pr/6891: Document devtools properties in config load order
-
Kazuki Shimizu authored
Add reference to `~/spring-boot-devtools.properties` in "Externalized Configuration" section. Closes gh-6891
-
Phillip Webb authored
Add annotation processor to `spring-boot-test` and `spring-boot-test-autoconfigure`. Fixes gh-6893
-
Andy Wilkinson authored
In 1.4.0 we used Elasticsearch 2.3.5 and Jackson 2.8. This combination was incompatible in some circumstances due to a change in Jackson (gh-6508). With Elasticsearch 2.4 yet to be released at the time, the only way to restore compatibility was to downgrade Jackson. With the release of Elasticsearch 2.4 we have another option: revert the Jackson downgrade and upgrade Elasticsearch instead. While we normally wouldn't consider upgrading to a new minor version of a dependency in a maintenance release we have to do something to restore compatibility. The alternative is to downgrade Jackson but that will affect more people (Jackson is more widely used than Elasticsearch) and will lose some functionality that was new in Jackson 2.8 that people may already be relying upon. This commit restores the use of Jackson 2.8 – including the 2.8-specific dependency management – and upgrades to Elasticsearch 2.4 Closes gh-6868
-
Andy Wilkinson authored
Closes gh-6827
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Breaking API changes in Gradle 3.0 make it impossible to support it reliably alongside Gradle 1 and 2 without mainintaining multiple versions of our Gradle plugin. This commit updates the documentation to note that Gradle 3 is not supported. Closes gh-6880
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Previously, in a war deployment, the web environment’s property sources were initialized using the servlet context after the application’s configuration had been read by ConfigFileApplicationListener. This meant that spring.config.location configured via the servlet context had no effect. This commit adds a new ApplicationListener, ServletContextApplicationListener, that initialises the configurable web environment’s property sources using the servlet context. It’s ordered with higher precedence than ConfigFileApplicationListener to ensure that any properties defined in the servlet context are available when loading the application’s configuration. Closes gh-6801
-
Andy Wilkinson authored
-
Stephane Nicoll authored
Closes gh-6892
-
Andy Wilkinson authored
@WebAppConfiguration expects a mock web environment. If it is used in conjuction with @SpringBootTest configured with a RANDOM_PORT or DEFINED_PORT web environment a null pointer exception occurs as an assumption that's made by MockServerContainerContextCustomizer doesn't hold true in a non-mock web environment. This commit updates SpringBootTestContextBootstrap to detect the illegal configuration combination and fail fast, advising the user to remove @WebAppConfiguration or reconfigure @SpringBootTest. Closes gh-6795
-
Stephane Nicoll authored
-
Phillip Webb authored
Rename AutoConfigureReportTestExecutionListener to SpringBootDependencyInjectionTestExecutionListener and ensure that it replaces any existing DependencyInjectionTestExecutionListener. Prior to this commit the registration of two DependencyInjection listeners would cause @PostConstruct methods on tests to be called twice. In order to allow the standard DependencyInjectionTestExecutionListener to be removed a new DefaultTestExecutionListenersPostProcessor interface has been introduced. Fixes gh-6874
-
Phillip Webb authored
Closes gh-6827
-
Phillip Webb authored
Update `ConfigFileApplicationListener` so that active profiles set in properties files that overlap with `spring.profiles.default` can still be set. Prior to this commit if `spring.profiles.active` happened to specify a profile name that was also in `spring.profiles.default` it would not get applied. Fixes gh-6833
-
Phillip Webb authored
Tomcat 8.5.5 has change the default value of `validationInterval` to 3000. See https://bz.apache.org/bugzilla/show_bug.cgi?id=59923 for details. See gh-6703 See gh-6657
-
- 14 Sep, 2016 5 commits
-
-
Stephane Nicoll authored
See gh-6870
-
Andy Wilkinson authored
This reverts commit c54cdd67.
-
Andy Wilkinson authored
As part of the upgrade, Tomcat now requires a keystore to contain an X.509 certificate. The two stores used in our tests have been updated by exporting their private keys and adding them as certificates. For example: $ keytool -exportcert -keystore test.jks -alias tomcat > exported $ keytool -importcert -keystore test.jks -file exported Closes gh-6703 Closes gh-6657
-
Andy Wilkinson authored
Closes gh-6795
-
Stephane Nicoll authored
Closes gh-6870
-
- 13 Sep, 2016 2 commits
-
-
Stephane Nicoll authored
* pr/6872: Polish
-
Johnny Lim authored
Closes gh-6872
-
- 12 Sep, 2016 6 commits
-
-
Phillip Webb authored
Update MockitoAopProxyTargetInterceptor to deal with deal with any existing argument matchers when working with the VerificationMode. Prior to this commit `@SpyBean` when combined with AOP could not support argument matchers. Fixes gh-6871
-
Phillip Webb authored
Update RootUriRequestExpectationManager to only wrap requests when they cannot be cast to MockClientHttpRequest. This prevents later ClassCastExceptions from being thrown with @RestClientTests that define expected body content. Fixes gh-6845
-
Phillip Webb authored
-
Stephane Nicoll authored
-
Stephane Nicoll authored
See gh-6869
-
Stephane Nicoll authored
-