1. 06 Jan, 2015 1 commit
    • Phillip Webb's avatar
      Fix InMemoryAuditEventRepository search by date · bd83aca6
      Phillip Webb authored
      Update InMemoryAuditEventRepository to consider the date when searching
      for events. Also switch to a circular buffer implementation and update
      the capacity to limit the total number of items rather than limiting
      per principal.
      
      Fixes gh-2291
      bd83aca6
  2. 05 Jan, 2015 1 commit
    • Phillip Webb's avatar
      Fix documentation code example error · 0622b3e9
      Phillip Webb authored
      The "Customizing ConfigurableEmbeddedServletContainer directly"
      section should use `HttpStatus.NOT_FOUND` and not `HttpStatus.404` in
      the sample code.
      
      Fixes gh-2258
      0622b3e9
  3. 03 Jan, 2015 2 commits
  4. 02 Jan, 2015 2 commits
    • Phillip Webb's avatar
      Fix ParentAwareNamingStrategy and JMX auto-config · 7e771bb6
      Phillip Webb authored
      Fix ParentAwareNamingStrategy to set ObjectName properties for the
      'identity' and 'context' attributes. Also update JmxAutoConfiguration
      to ensure that the ParentAwareNamingStrategy is created in each context
      and that the `mbeanExporter` bean is created. Prior to this commit the
      nested @EnableMBeanExport class always meant that the mbeanExporter
      condition never matched.
      
      Fixes gh-2243
      7e771bb6
    • Phillip Webb's avatar
      Guard for multiple ContentNegotiatingViewResolvers · c46478f9
      Phillip Webb authored
      Update WebMvcAutoConfiguration to ensure than the viewResolver bean
      is not created if a user defined ContentNegotiatingViewResolver bean
      is defined.
      
      Fixes gh-2269
      c46478f9
  5. 30 Dec, 2014 3 commits
  6. 28 Dec, 2014 2 commits
  7. 27 Dec, 2014 1 commit
  8. 26 Dec, 2014 1 commit
    • Phillip Webb's avatar
      Make RequestMappingHandlerMapping @Primary · 96d479c3
      Phillip Webb authored
      Update WebMvcAutoConfiguration so that the RequestMappingHandlerMapping
      bean is @Primary. Prior to this commit a NoUniqueBeanDefinitionException
      would be thrown then using the MvcUriComponentsBuilder.
      
      Fixes gh-2237
      96d479c3
  9. 23 Dec, 2014 2 commits
  10. 18 Dec, 2014 2 commits
  11. 17 Dec, 2014 1 commit
  12. 15 Dec, 2014 1 commit
  13. 14 Dec, 2014 2 commits
  14. 12 Dec, 2014 2 commits
  15. 11 Dec, 2014 2 commits
  16. 10 Dec, 2014 2 commits
  17. 09 Dec, 2014 1 commit
    • Phillip Webb's avatar
      Fix session timeout default value · 1c031abd
      Phillip Webb authored
      Update DEFAULT_SESSION_TIMEOUT to use TimeUnit.MINUTES.toSeconds(30)
      rather than TimeUnit.SECONDS.toMinutes(30) which would always return
      0.
      
      See gh-2084
      (cherry picked from commit b33bbd56)
      1c031abd
  18. 08 Dec, 2014 5 commits
  19. 05 Dec, 2014 2 commits
  20. 02 Dec, 2014 1 commit
    • Andy Wilkinson's avatar
      Make Security auto-config conditional on spring-security-config · 3b78aa94
      Andy Wilkinson authored
      SecurityAutoConfiguration, via its import of
      AuthenticationManagerConfiguration, requires spring-security-config
      to be on the classpath as AuthenticationManagerConfiguration extends
      GlobalAuthenticationConfigurerAdapter from spring-security-config.
      
      This commit makes SecurityAutoConfiguration conditional on the
      presence of GlobalAuthenticationConfigurerAdapter so that the
      auto-configuration will be disabled in its absence rather than causing
      an app to fail to start.
      
      Closes gh-2046
      3b78aa94
  21. 01 Dec, 2014 4 commits