- 30 May, 2014 21 commits
-
-
Stephane Nicoll authored
Provide auto-configuration support for HornetQ JMS broker, along with an additional starter POM. The connection factory connects to a broker available on the local machine by default. A configuration switch allows to enable an embedded mode that starts HornetQ as part of the application. In such a mode, the spring.hornetq.embedded.* properties provide additional options to configure the embedded broker. In particular, message persistence and data directory locations can be specified. It is also possible to define the queue(s) and topic(s) to create on startup. Fixes: gh-765
-
Phillip Webb authored
Since the RelaxedBinder now supports it.
-
Phillip Webb authored
Update RelaxedConversionService to support enums that are themselves declared as lower-case (or mixed case) items. Fixes gh-996
-
Phillip Webb authored
-
Stephane Nicoll authored
This commit fixes the main resources directory location so that it also works in a multi-projects setup. Fixes gh-993
-
Phillip Webb authored
Update RelaxedDataBinder to hook in an additional RelaxedConversionService which can deal with case insensitive enum mappings. The RelaxedConversionService could be extended in the future with additional converters if necessary. Fixes gh-996
-
Andy Wilkinson authored
-
Andy Wilkinson authored
We currently honour type, but ignore ext. Aether doesn't make a distinction between the two so a Grab that specifies both type and ext but with different values is considered to be an error. Fixes #995
-
Dave Syer authored
Older versions of Spring Social will not have the SocialConfigurerAdapter so making social autoconfig conditional on that class makes sense (since it all extends from it). Fixes gh-986
-
Dave Syer authored
-
Dave Syer authored
-
Phillip Webb authored
Looks like a hang over from some older code.
-
Dave Syer authored
-
Dave Syer authored
Setting security.basic.enabled=false in a secure app doesn't make a lot of sense. The sample has it set to true now (the default) so users can login (via the form that is sitting in front of the basic auth filter chain). Fixes gh-997
-
Dave Syer authored
It was ignoring the engine argument in the 3 arg version of template().
-
Dave Syer authored
If you bind to Map<String,Object> you get a nested Map instead of period-separated keys. This change just makes JpaProperties expose a Map<String,String> so the keys are sane. Fixes gh-988
-
Dave Syer authored
-
Andy Wilkinson authored
Closes #994
-
Andy Wilkinson authored
-
Dave Syer authored
Fixes gh-979
-
Dave Syer authored
Only imports classes with names that are not already imported into teh SourceUnit Fixes gh-983
-
- 29 May, 2014 5 commits
-
-
Phillip Webb authored
-
Dave Syer authored
Also an integration test that uses the (new) @EnableGroovyTemplates to switch on the template conveniences in a non-webapp Fixes gh-990
-
Dave Syer authored
The main difference for now is the removal of the --nohup (slightly hacky) option in TestCommand. Now a TestCommand can signal to its caller that it wants to be hung up. Fixes gh-975
-
Dave Syer authored
Actually the web-secure sample is misusing security.basic.enabled=false (IMO) - it should be a flag to say that you want to temporarily disable the basic security fallback on application endpoins, not way to disable all security autoconfiguration. Added test case to web-secure sample to ensure a user can log in. Fixes gh-979
-
Andy Wilkinson authored
-
- 28 May, 2014 14 commits
-
-
Phillip Webb authored
Restore the dependency on commons-logging (transitively via spring-core) for spring-boot. This means that we are not tied directly to SLF4J, but it is still an option that can be used via `jcl-over-slf4j`. The `spring-boot-starter-parent` continues to replace `commons-logging` with `jcl-over-slf4j`. Fixes gh-981
-
Phillip Webb authored
-
Andy Wilkinson authored
Closes #955 Closes #978
-
Dave Syer authored
Fixes gh-977
-
Dave Syer authored
-
Dave Syer authored
Otherwise the ApplicationContext stays alive and if it's a server app the JVM does not exit at the end of "spring test". User can override with "spring test foo.groovy --nohup" (which we have to do in our unit tests).
-
Phillip Webb authored
Update Spring Social auto-configurations to read properties using the `dashed` notation and with the appropriate prefixes. This allows properties to be specified in any of the relaxed forms. Also minor refactor to extract common logic to a new SocialAutoConfigurerAdapter base class. See gh-941
-
Phillip Webb authored
-
Dave Syer authored
-
Dave Syer authored
Fixes gh-974
-
Andy Wilkinson authored
Quartz is an optional dependency of spring-context-support so there's no need to exclude it This is a baby-step towards using the Spring Framework bom (#955)
-
Phillip Webb authored
Inadvertently missed during a 1.0.x merge.
-
Phillip Webb authored
Conflicts: spring-boot-dependencies/pom.xml
-
Phillip Webb authored
Refactor Jasper initialization code to call JasperInitializer during server start. Fixes gh-962 See gh-919
-