- 04 Mar, 2014 8 commits
-
-
Spring Buildmaster authored
-
Phillip Webb authored
* patch-2: Correct link to samples.
-
Adam Brodziak authored
Fixes gh-415
-
Phillip Webb authored
Rename ErrorWrapperEmbeddedServletContainerFactory to ErrorPageFilter and extend AbstractConfigurableEmbeddedServletContainer rather than AbstractEmbeddedServletContainerFactory. Fixes gh-416
-
Phillip Webb authored
Rename ConfigurableEmbeddedServletContainerFactory to ConfigurableEmbeddedServletContainer and extract AbstractConfigurableEmbeddedServletContainer from AbstractEmbeddedServletContainerFactory.
-
Phillip Webb authored
Update ConfigurableEmbeddedServletContainerFactory to no longer directly extend EmbeddedServletContainerFactory.
-
Phillip Webb authored
Remove getPort() from ConfigurableEmbeddedServletContainerFactory to keep the interface primarily setters.
-
Phillip Webb authored
-
- 03 Mar, 2014 6 commits
-
-
Dave Syer authored
There's no explicit support for older Servlet specs in Spring Boot, but we can at least make it easy for others to provide such support by not adding stuff to the context when in an older container.
-
Dave Syer authored
-
Dave Syer authored
Useful sample for common use case where user adds custom Authentication, a form login, *and* global method security all the the same application.
-
Dave Syer authored
Some assumptions were being made in tests, e.g. about there being an AuthenticationManager @Bean, which were false with the new Security 3.2.1 updates from Rob. Also parent-child contexts with the actuator were problematic because they didn't exclude the web configuration for the management security in the parent context. Fixes gh-244
-
Rob Winch authored
Also change strategy for defaulting of Authentication. Spring Boot authentication defaults are now encapsulated and can easily be overridden by a user defined AuthenticationManager.
-
Dave Syer authored
Error pages are a feature of the servlet spec but there is no Java API for registering them in the spec. This filter works around that by accepting error page registrations from Spring Boot's EmbeddedServletContainerCustomizer (any beans of that type in the context will be applied to this container). In addition the ErrorController interface was enhanced to provide callers the option to suppress logging. Fixes gh-410
-
- 28 Feb, 2014 3 commits
- 27 Feb, 2014 4 commits
-
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Marten Deinum authored
Fixes gh-60
-
- 26 Feb, 2014 6 commits
-
-
Dave Syer authored
User can then use a weak reference map (for instance), if worried about memory usage.
-
Dave Syer authored
-
Sebastien Deleuze authored
Fixes gh-405
-
Dave Syer authored
Hibernate is picky about javassist, but unfortunately that library is used by other parts of our stack (Thymeleaf!?), so we need a policy for resolving the dependency transitively. I fixed it to the version in Hibernate 4.3.1 (our current best foot forward), but it will have to be updateed whenever Hibernate is. Fixes gh-402
-
Dave Syer authored
-
Dave Syer authored
Fixes gh-396
-
- 25 Feb, 2014 5 commits
-
-
Dave Syer authored
Spring 4.0.3 is not released yet, but we can anticipate the change. With this commit SpringApplicationContextLoader can discover default config (nested) classes if none are provided. It should just work when Spring is upgraded. Fixes gh-395
-
Dave Syer authored
This is a holding pattern until SPR-11455 is fixed. We now throw an exception with a helpful message instead of ttrying to detect default configuration. Fixes gh-380
-
Dave Syer authored
It turns out that loader.path=. was pathological and before this change ended up making the classpath empty (loader.path=.,lib/ would have fixed it). With this change the old behaviour is still supported, but if the only user-supplied path entry is "." (or empty) then it is now kept, and translates into the root of the current archive if running as "java -jar ...". Fixes gh-270
-
Phillip Webb authored
Fixes gh-392
-
Phillip Webb authored
Fixes gh-393
-
- 24 Feb, 2014 8 commits
-
-
Phillip Webb authored
Add `tomcat-embed-el` dependency (newly released as part of Tomcat 7.0.52) allowing EL usage without jasper. Fixes gh-248
-
Phillip Webb authored
Fixes gh-245
-
Phillip Webb authored
-
Phillip Webb authored
* pull365: Upgrade to Spring Data Codd GA release.
-
Oliver Gierke authored
Adapt auto-configuration code to use the new constructor introduced in Spring Data Commons' AnnotationConfigurationSource. Fixes gh-365
-
Phillip Webb authored
Restore previous behavior where JarFile URLs are always prefixed with "jar:". I believe that the prefix is required in order to remain compatible with standard JAR URLs. This reverts commit 825fc2f7.
-
Phillip Webb authored
-
Dave Syer authored
The existing behaviour of JobLauncherCommandLineRunner was really too basic. It has now been enhanced (at the expense of duplicating a lot of code in Spring Batch it seems) to automatically increment job parameters if it can, and to retry a failed or stopped execution if it can (without incrementing, but with additional job parameters added from command line if they are non-identifying). The JobLauncherCommandLineRunner is more extendable and exposes its DI wiring points now as well, so hopefully users can make use of it independently of autoconfig (by providing a @Bean of that type). Not everything from the wishlist in gh-325 is implememented yet, but it should be a good platform to work with and to extend.
-