1. 04 Mar, 2014 8 commits
  2. 03 Mar, 2014 6 commits
    • Dave Syer's avatar
      Be defensive with auto-config of Servlet 3.0 features · 07b88630
      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.
      07b88630
    • Dave Syer's avatar
      Add actuator to method security sample · 8ff9e677
      Dave Syer authored
      8ff9e677
    • Dave Syer's avatar
      Add method security web sample · 9504f6e5
      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.
      9504f6e5
    • Dave Syer's avatar
      Fix tests · b0b7bc0e
      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
      b0b7bc0e
    • Rob Winch's avatar
      Update to Spring Security 3.2.1 · 6b0eba37
      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.
      6b0eba37
    • Dave Syer's avatar
      Add ErrorWrapperEmbeddedServletContainerFactory for error pages in WARs · 13e040c0
      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
      13e040c0
  3. 28 Feb, 2014 3 commits
  4. 27 Feb, 2014 4 commits
  5. 26 Feb, 2014 6 commits
  6. 25 Feb, 2014 5 commits
  7. 24 Feb, 2014 8 commits
    • Phillip Webb's avatar
      Support EL without jasper by using tomcat-embed-el · 0322c5f5
      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
      0322c5f5
    • Phillip Webb's avatar
      Upgrade to Tomcat 7.0.52 · c44f902a
      Phillip Webb authored
      Fixes gh-245
      c44f902a
    • Phillip Webb's avatar
      Polish · 0260297a
      Phillip Webb authored
      0260297a
    • Phillip Webb's avatar
      Merge pull request #365 from olivergierke/master · cd3d4b48
      Phillip Webb authored
      * pull365:
        Upgrade to Spring Data Codd GA release.
      cd3d4b48
    • Oliver Gierke's avatar
      Upgrade to Spring Data Codd GA release. · af458cb2
      Oliver Gierke authored
      Adapt auto-configuration code to use the new constructor introduced
      in Spring Data Commons' AnnotationConfigurationSource.
      
      Fixes gh-365
      af458cb2
    • Phillip Webb's avatar
      Revert "Omit jar: prefix from jarFileUrl" · 865c51d7
      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.
      865c51d7
    • Phillip Webb's avatar
      Polish · cf23b519
      Phillip Webb authored
      cf23b519
    • Dave Syer's avatar
      Add retry and parameter increment logic to job runner · 89473077
      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.
      89473077