- 10 Sep, 2015 4 commits
-
-
Pei-Tang Huang authored
Update HibernateJpaAutoConfiguration to catch LinkageError rather than NoClassDefFoundError. Required due to the fact that JBoss EAP 6 wraps NoClassDefFoundErrors. Fixes gh-3605
-
Phillip Webb authored
Update ServerProperties so that unknown SERVER_* environment properties do not cause startup failures. Fixes gh-3903
-
Phillip Webb authored
* gh-3926: Propagates logback log levels to java.util.logging
-
Thomas Recloux authored
Adds the LevelChangePropagator logback listener in order to propagate Logback's log level changes to java.util.logging loggers. Logback documentation : http://logback.qos.ch/manual/configuration.html#LevelChangePropagator Fixes gh-3924 Closes gh-3926
-
- 08 Sep, 2015 4 commits
-
-
Phillip Webb authored
Update Eclipse cleanup actions to only format changed lines. This will hopefully help to prevent so many false diffs caused by differences between Eclipse Luna and Eclipse Mars.
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
- Update whitespace after inline generics - Use a more sensible import order - Update Javadoc warning settings
-
- 03 Sep, 2015 3 commits
-
-
Phillip Webb authored
Update SpringApplicationContextLoader so that setRegisterShutdownHook is false for tests. Fixes gh-3763
-
Phillip Webb authored
-
Phillip Webb authored
See gh-3856
-
- 02 Sep, 2015 4 commits
-
-
Andy Wilkinson authored
Closes gh-3869
-
Andy Wilkinson authored
Closes gh-3779
-
Andy Wilkinson authored
Closes gh-3868
-
Barry Lagerweij authored
Closes gh-3846
-
- 01 Sep, 2015 3 commits
-
-
Stephane Nicoll authored
Refine commit 8a964814 to set the web environment to false if spring web is not available in the classpath. Thanks to @mjustin for spotting that mistake. Closes gh-3856
-
Stephane Nicoll authored
Previously, deployment tests were storing the container archives in the default location (that is `/tmp`) for a total weight of 160MB. In case the temp directory is cleaned on CI, these have to be downloaded again. We're now configuring cargo to store these archives in the home directory instead. This should improve the speed and the stability of the deployment tests Closes gh-3861
-
Stephane Nicoll authored
SpringApplication wrongly expects spring-web to be on the classpath to figure out whether or not the web environment should be enabled for a custom context class. We now properly guard this check so that the web environment is not enabled (read: not checked) if `spring-web` is not available. Closes gh-3856
-
- 29 Aug, 2015 1 commit
-
-
Stephane Nicoll authored
Closes gh-3843
-
- 26 Aug, 2015 1 commit
-
-
Andy Wilkinson authored
Closes gh-3406 Closes gh-3526
-
- 25 Aug, 2015 1 commit
-
-
Stephane Nicoll authored
Closes gh-3823
-
- 20 Aug, 2015 1 commit
-
-
Stephane Nicoll authored
Closes gh-3792
-
- 17 Aug, 2015 1 commit
-
-
Stephane Nicoll authored
The DataSource health indicator uses `JdbcTemplate` behind the scenes but nothing was checking that it is actually available. `DataSourcesHealthIndicatorConfiguration` is now disabled if `spring-jdbc` is not on the classpath. Fixes gh-3765
-
- 14 Aug, 2015 1 commit
-
-
Andy Wilkinson authored
Closes gh-3760
-
- 10 Aug, 2015 4 commits
-
-
Andy Wilkinson authored
Closes gh-3423
-
Andy Wilkinson authored
This commit adds support for using the environment to configure the Freemarker and Velocity view resolvers to allow session overrides. Closes gh-3410
-
Andy Wilkinson authored
Closes gh-3421
-
Stephane Nicoll authored
The annotation processor detects `@ConfigurationProperties` bean or method definition and merges manual meta-data. The former step will fail with a NPE if the annotation is not present on the classpath. This could happen if the annotation processor is added to a module that is not actually using Spring Boot. We now have a defensive check that skips that steps but still attempts to merge manual meta-data if present. Closes gh-3720
-
- 09 Aug, 2015 1 commit
-
-
Thomas Traude authored
Closes gh-3715
-
- 07 Aug, 2015 1 commit
-
-
Stephane Nicoll authored
Closes gh-3700
-
- 05 Aug, 2015 7 commits
-
-
Andy Wilkinson authored
Closes gh-3681
-
Andy Wilkinson authored
Closes gh-3674
-
Andy Wilkinson authored
Closes gh-3673
-
Andy Wilkinson authored
Closes gh-3672
-
Andy Wilkinson authored
Closes gh-3671
-
Andy Wilkinson authored
Closes gh-3670
-
Andy Wilkinson authored
Closes gh-3669
-
- 04 Aug, 2015 1 commit
-
-
Andy Wilkinson authored
Previously, BeanTypeRegistry would only look for a @Bean method with no arguments when trying to determine the type that will be created by a factory bean. This meant that the type produced by a factory bean declared via a @Bean that has one or more arguments would be unknown and any on missing bean conditions look for a bean of the type produced by the factory bean would match in error. This commit updates BeanTypeRegistry to, where possible, use the factory method metadata for the bean definition when determining the type that will be created. This allows it to determine the type for factory bean created by @Bean methods that take arguments and also avoids the use reflection to find the factory method. Where factory method metadata is not available, the existing reflection-based approach is used as a fallback. Closes gh-3657
-
- 03 Aug, 2015 2 commits
-
-
Phillip Webb authored
-
Andy Wilkinson authored
-