- 26 May, 2014 5 commits
-
-
Dave Syer authored
-
Dave Syer authored
Fixes gh-948
-
Dave Syer authored
Either set flyway.[url,user,password] or create a DataSource @Bean and mark it @FlywayDataSource. Fixes gh-807
-
Roy Clarkson authored
New feature in Spring Mobile (user preferences per site). Fixes gh-946
-
Dave Syer authored
See gh-948
-
- 25 May, 2014 3 commits
-
-
Dave Syer authored
-
Dave Syer authored
Instead of *always* needing to pull auto-import dependencies from the master parent pom, we now allow normal @Grab-style module specifications, e.g. "io.ratpack:ratpack-groovy:0.9.2"
-
Stephane Nicoll authored
* fixdoc: Fix table row format in documentation
-
- 24 May, 2014 3 commits
-
-
Brian Clozel authored
-
Dave Syer authored
when server.servletPath is set we need to add prefixes to the security filter paths. Fixes gh-945
-
Dave Syer authored
This affected @ConfigurationProperties binding whenever there were multiple PropertySources (from any source) in the Environment and mor ethan one carried a value for a particular key. The rules for override are clear in Environment.getProperty() but they were being violated by the PropertySourcesPropertyValues. Fixes gh-916
-
- 23 May, 2014 17 commits
-
-
Phillip Webb authored
Open up AutoConfigurationPackages.set(...) to allow programmatic configuration of base packages. Fixes gh-924
-
Phillip Webb authored
-
Phillip Webb authored
Fix MalformedURLException warnings caused by Tomcat 8 adding additional URLs to the TomcatEmbeddedWebappClassLoader. Add JasperInitializerLifecycleListener to call Tomcat 8's JasperInitializer which is now required for JSP rendering. Fixes gh-919
-
Andy Wilkinson authored
spring-instrument-tomcat is deliberately not included as it is only required with Tomcat 6 and Boot uses Tomcat 7
-
Phillip Webb authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
-
Andy Wilkinson authored
Boot’s auto-configuration for FreeMarker and Velocity relies on Spring’s support for them that’s packaged in spring-context-support. Only auto-configure them if their respective Spring classes are on the classpath Fixes #940
-
Dave Syer authored
-
Phillip Webb authored
Rename SimpleDataSourceHealthIndicator to DataSourceHealthIndicator.
-
Phillip Webb authored
Update Health and Status objects to be immutable, update the existing builder methods to return new instances and add static convenience methods to Health.
-
Dave Syer authored
In addition I added some convenience methods to ServerProperties (servletMapping() and servletPrefix()) for manipulating the servlet path as provided by the user (e.g. normalizing it into a valid Servlet mapping path for the DispatcherServlet). Fixes gh-939, see also gh-936
-
Phillip Webb authored
-
Phillip Webb authored
-
Henryk Konsek authored
Fixes gh-938
-
Phillip Webb authored
Deprecate setNamingstrategy() and log a warning letting people know that they should use `naming-strategy`. Issue #928
-
Eric Dahl authored
-
- 22 May, 2014 12 commits
-
-
Christian Dupuis authored
fixes #930
-
Christian Dupuis authored
-
Andy Wilkinson authored
In 1.0, the property spring.jpa.hibernate.namingstrategy could be used to configure Hibernate's naming strategy. This was at odds with most other configuration where binding to namingStrategy would require a property with some indication that it was two separate words, for example: naming-strategy, naming_strategy, or namingStrategy This commit adds a new setter, setNamingstrategy, to JpaProperties so that an app that was using namingstrategy in 1.0 continues to work in 1.1. Issue #928
-
Phillip Webb authored
-
Andy Wilkinson authored
Closes #906
-
Andy Wilkinson authored
-
Phillip Webb authored
Refactor and rework several areas of the Gradle plugin: - Refactor package structure into functional areas and configure each area separately via a new PluginFeatures interface. - Convert BootRunTask to extend RunTask rather than attempting to find existing RunTasks. - Simplify agent integration by no longer needing specific BootRunTask code. - Update the repackage task to consider the `mainClassName` property in addition to `springBoot.mainClass`. - Automatically set `mainClassName` when calling `run` or `runBoot` from `springBoot.mainClass` if there is one. - Ensure that explicitly defined `main` options on JavaExec tasks always take precedence. Fixes gh-547, gh-820, gh-886, gh-912
-
Phillip Webb authored
Sync the explicit setting with 'project specific settings' in case the eclipse plugin is not used.
-
Christian Dupuis authored
to make it more simple to implement HealthIndicator
-
Dave Syer authored
Since we upgraded Aether we now have the native JreProxySelector available so we don't need to keep a copy ourselves.
-
Andy Wilkinson authored
Closes #792
-
apoplexy authored
Prevents large SPNEGO headers from causing server errors for example. Added the property to ServerProperties. Fixes gh-931
-