- 06 Sep, 2013 33 commits
-
-
Dave Syer authored
-
Sergey Shcherbakov authored
-
ggerard authored
-
Phillip Webb authored
Issue: #53028397
-
Biju Kunjummen authored
-
Biju Kunjummen authored
-
Dave Syer authored
A bug in ivy (tickled by maven leaving a pom but no jar in the local repo) would make the default Grapes ivy config fail (cannot grab...). Phil's workaround now has a test case.
-
Phillip Webb authored
Fix the localm2 repository to only consider that a pom exists when its artifact is contained in the repository. This prevents a download error that can occur when the local m2 repository contains a POM file but not a JAR. Issue: #55532358
-
Phillip Webb authored
Issue: #55528242
-
Phillip Webb authored
Change WebMvcAutoConfiguration to use WebMvcConfigurationSupport instead of HanderAdapter as the @ConditionalOnMissingBean. This allows MVC to be auto-configured even if you define additional HanderAdapters. Issue: #55493342
-
Phillip Webb authored
-
Phillip Webb authored
Update HibernateJpaAutoConfiguration to use the ImprovedNamingStrategy for better table and column names. Issue: #55261888
-
Phillip Webb authored
-
Phillip Webb authored
Update AutoConfigurationUtils to specifically exclude spring-data-rest packages from being stored. This prevent missing class errors caused when Spring Boot attempts to use @ComponentScan packages as the source for JPA entities and reads annotations that are not on the classpath. Issue: #55489346
-
Phillip Webb authored
-
Dave Syer authored
[Fixes #55388726] [bs-292]
-
Dave Syer authored
The Boot resolver didn't transfer enough of the settings of the default ChainResolver. Adding a boolean flag was enough to make the chatter die down for dependencies that were unneeded. [Fixes #55358344] [bs-291]
-
Phil Webb authored
-
Dave Syer authored
Seems to work. I think the problem was the race conditions that we hopefully already eliminated. I got an out of memory error running the samples tests in Eclipse, but then it went away again (something to look out for). [Fixes #54925992] [bs-280]
-
Dave Syer authored
-
Dave Syer authored
The DispatcherServlet adds a default InternalViewResolver which was used by some apps, but when the actuator was available it added an "/error" bean and effectively switched off the default view resolver. The net fix was to add an InternalViewResolver at the same time as adding any other ViewResolvers. [Fixes #55357516] [bs-290] Actuator UI app cannot serve static index.html
-
Dave Syer authored
-
Phillip Webb authored
-
Phillip Webb authored
Create a new SpringBootCondition that will log why a condition has or has not been applied. The removes the need for ConditionLogUtils and simplifies many of the existing condition implementations. Issue: #55203236
-
Phillip Webb authored
Update LoggingApplicationContextInitializer to detect the presence of '--debug' and '--trace' arguments to increase log output. Using '--debug' will set 'org.springframework.boot' loggers to DEBUG. Using '--trace' will set 'org.springframework', 'org.apache.tomcat' and 'org.eclipse.jetty' loggers to TRACE. Issue: #55202588
-
Phillip Webb authored
Change SpringApplicationInitializer interface to include run() args. Allow initializers to make additional configurations based on the user supplied arguments. Issue: #55202588
-
Phillip Webb authored
Rename SpringApplication.defaultCommandLineArgs to defaultArgs for consistency with the run() method arguments. Issue: #55202844
-
Phillip Webb authored
Provide a common way to programmatically set log levels regardless of the underlying log implementation. Issue: #55202588
-
Phillip Webb authored
-
Phillip Webb authored
-
Dave Syer authored
-
Phillip Webb authored
-
Phillip Webb authored
-
- 13 Aug, 2013 1 commit
-
-
Phillip Webb authored
Update ConditionalOn annotations : - Use consistent attribute names for OnClass and OnMissingClass - Update javadoc - Rename tests to reflect the annotation rather than the interface
-
- 12 Aug, 2013 6 commits
-
-
Dave Syer authored
Also add @WebConfiguration as a shortcut for groovy scripts to get MVC behaviour (without a @Controller) [#54926366]
-
Phillip Webb authored
# By Chanwit Kaewkasi * pull23: Fix a line ending issue for building on Windows
-
Chanwit Kaewkasi authored
-
Phillip Webb authored
This reverts commit e8430f61.
-
Dave Syer authored
* Exposed common pool properties in the base class for data source configuration * Made it @ConfigurationProperties so it binds in strongly typed sense [Fixes #53028455] [bs-214] Add pool parameters to AbstractDataSourceConfiguration
-
Dave Syer authored
-