1. 25 Aug, 2014 1 commit
  2. 22 Aug, 2014 3 commits
  3. 21 Aug, 2014 6 commits
  4. 19 Aug, 2014 19 commits
  5. 18 Aug, 2014 4 commits
    • Phillip Webb's avatar
      Prevent tests from picking up empty starter dirs · 2188e355
      Phillip Webb authored
      Update StarterDependenciesIntegrationTests to only consider starter
      folders that contain POM files.
      
      Fixes gh-1395
      2188e355
    • Phillip Webb's avatar
      Find 'messages*.properties' in all jar URLs · eb721b1e
      Phillip Webb authored
      Update the the PathMatchingResourcePatternResolver used in the
      MessageSourceAutoConfiguration condition to deal with the fact
      that `classpath*:` patterns do not work with URLClassLoaders when
      the pattern doesn't include a folder.
      
      The ExtendedPathMatchingResourcePatternResolver works by searching
      all classpath URLs when the `findAllClassPathResources` method is
      called with an empty location.
      
      Fixes gh-1378
      eb721b1e
    • Phillip Webb's avatar
      Polish · 6e6bc25c
      Phillip Webb authored
      6e6bc25c
    • Dave Syer's avatar
      Tidy imports · 91d3edc2
      Dave Syer authored
      91d3edc2
  6. 13 Aug, 2014 3 commits
  7. 12 Aug, 2014 1 commit
    • Dave Syer's avatar
      Refactor AuthenticationManagerConfiguration to make sure it works · 0cf1c6f0
      Dave Syer authored
      if user also adds @EnableWebMvcSecurity. The problem is that the ordering
      of the init() and configure() methods in the Spring Security configurers
      can force things to happen too early unless we are careful. It's still a bit
      twitchy I would say, but this relatively small change seems to fix the GS guide
      and not break any existing tests.
      
      I added a sample which mimic ths GS guide so we get an integration test that
      executes the new code paths.
      
      Fixes gh-1364
      0cf1c6f0
  8. 11 Aug, 2014 1 commit
    • Phillip Webb's avatar
      Don't cause early FactoryBean instantiation · 9a7a4a46
      Phillip Webb authored
      Update ConfigurationPropertiesBindingPostProcessor to use
      `getBeansOfType` with `allowEagerInit=false` rather than `getBean`.
      
      This prevents FactoryBeans from being instantiated early when their
      type is not known.
      
      Fixed gh-1365
      9a7a4a46
  9. 07 Aug, 2014 2 commits