1. 14 Aug, 2015 6 commits
  2. 13 Aug, 2015 6 commits
    • Andy Wilkinson's avatar
      Workaround bizarre compiler problem · c15a670c
      Andy Wilkinson authored
      c15a670c
    • Andy Wilkinson's avatar
      Detect ConfigurableWebBindingInitializer bean and register with MVC · 51dd806a
      Andy Wilkinson authored
      Previously, to use a custom ConfigurableWebBindingInitializer, it was
      necessary to extend WebMvcConfigurationSupport and override
      getConfigurableWebBindingInitializer. This had the unwanted
      side-effect of switching off the auto-configuration of Spring MVC.
      
      This commit updates the auto-configuration to look for a
      ConfigurableWebBindingInitializer bean and register it with Spring
      MVC.
      
      Closes gh-2526
      51dd806a
    • Martin Lippert's avatar
      511c6d39
    • Craig Andrews's avatar
      Add more Jackson dependencies to spring-boot-dependencies · 2e0e2a3d
      Craig Andrews authored
      Add:
      
       - jackson-datatype-hibernate4
       - jackson-datatype-hibernate5
       - jackson-datatype-jdk7
       - jackson-module-parameter-names
      
      Closes gh-3727
      2e0e2a3d
    • izeye's avatar
      Polish documentation · eab7eff0
      izeye authored
      Closes gh-3738
      eab7eff0
    • Andy Wilkinson's avatar
      Ignore case when filtering out properties based on target name · fbe2e470
      Andy Wilkinson authored
      Previously, PropertiesConfigurationFactory would only create a
      DefaultPropertyNamePatternsMatcher that ignored case if it was
      ignoring unknown fields. If the binding had a target name and
      unknown fields were not being ignored the matcher would consider the
      case when finding matches. This meant that SERVER_PORT would not being
      to ServerProperties.port as SERVER did not match the target name,
      server.
      
      This commit updates PropertiesConfigurationFactory to use a
      case-ignoring DefaultPropertyNamePatternsMatcher when binding with
      a target name. The tests have also been updated to test binding both
      with and without ignoring case and using either Properties or
      PropertySources. The above-described matching is only performed
      against PropertySources and the bug only occurred when using a target
      name, making it important to test all combinations.
      
      Closes gh-3745
      fbe2e470
  3. 12 Aug, 2015 2 commits
  4. 11 Aug, 2015 2 commits
  5. 10 Aug, 2015 18 commits
  6. 09 Aug, 2015 2 commits
  7. 07 Aug, 2015 4 commits