1. 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
  2. 03 Jan, 2015 2 commits
  3. 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
  4. 30 Dec, 2014 3 commits
  5. 28 Dec, 2014 2 commits
  6. 27 Dec, 2014 1 commit
  7. 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
  8. 23 Dec, 2014 2 commits
  9. 18 Dec, 2014 2 commits
  10. 17 Dec, 2014 1 commit
  11. 15 Dec, 2014 1 commit
  12. 14 Dec, 2014 2 commits
  13. 12 Dec, 2014 2 commits
  14. 11 Dec, 2014 2 commits
  15. 10 Dec, 2014 2 commits
  16. 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
  17. 08 Dec, 2014 5 commits
  18. 05 Dec, 2014 2 commits
  19. 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
  20. 01 Dec, 2014 4 commits
  21. 26 Nov, 2014 1 commit
    • Andy Wilkinson's avatar
      Allow mongo port, host, and credentials to be configured individually · 64599261
      Andy Wilkinson authored
      Previously, the host had to have a custom value for the configuration
      of the port or credentials (username and password) to take effect. This
      meant, for example, that you couldn’t just set the port or just set the
      username and password while using the default host.
      
      This commit allows the port or username and password to be configured
      without also configuring the host. The default host (localhost) and
      port (27017) are retained.
      
      Fixes gh-2008
      64599261