1. 30 Dec, 2014 1 commit
  2. 28 Dec, 2014 2 commits
  3. 27 Dec, 2014 1 commit
  4. 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
  5. 23 Dec, 2014 2 commits
  6. 18 Dec, 2014 2 commits
  7. 17 Dec, 2014 1 commit
  8. 15 Dec, 2014 1 commit
  9. 14 Dec, 2014 2 commits
  10. 12 Dec, 2014 2 commits
  11. 11 Dec, 2014 2 commits
  12. 10 Dec, 2014 2 commits
  13. 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
  14. 08 Dec, 2014 5 commits
  15. 05 Dec, 2014 2 commits
  16. 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
  17. 01 Dec, 2014 4 commits
  18. 26 Nov, 2014 2 commits
  19. 25 Nov, 2014 5 commits
  20. 24 Nov, 2014 1 commit
    • Andy Wilkinson's avatar
      Use relative paths so index is unaffected by its context path · ccbc606d
      Andy Wilkinson authored
      Previously, index.html used absolute paths to load its CSS and
      JavaScript. This meant that it had to be deployed to /. This commit
      updates the HTML to use relative paths for its CSS and JavaScript,
      thereby ensuring that they can be loaded irrespective of the context
      path to which the application is deployed.
      
      Closes gh-1988
      ccbc606d