1. 12 Mar, 2018 9 commits
  2. 10 Mar, 2018 2 commits
  3. 09 Mar, 2018 12 commits
  4. 08 Mar, 2018 11 commits
  5. 07 Mar, 2018 6 commits
    • Stephane Nicoll's avatar
      Ignore static and abstract accessors · 7d1faa1c
      Stephane Nicoll authored
      This commit updates the annotation processor and the binder to ignore
      any static or abstract method that has the characteristics of a JavaBean
      accessor. As a result, no property is generated for those (invalid)
      accessor and no binding occurs on them either.
      
      Closes gh-12390
      7d1faa1c
    • Brian Clozel's avatar
      Reorder WebMvcConfigurer from auto-configuration · 72afdc67
      Brian Clozel authored
      Prior to this commit, all `WebMvcConfigurer` instances provided by user
      configuration were processed *before* the one provided by the
      `WebMvcAutoConfiguration`.
      
      For many options this has no consequence, but for some, like the
      `ContentNegotiationConfigurer`, settings were overriden by the
      auto-configuration even if developers provided an opinion.
      
      This commit orders the `WebMvcConfigurer` provided by the
      auto-configuration at `0`, so that custom configurers (unordered, at
      `Ordered.LOWEST_PRECEDENCE`) are processed *after*.
      
      This still gives room to developers for configuring things *before* the
      auto-configuration - they can still order their own configuration
      accordingly.
      
      Fixes gh-12389
      72afdc67
    • Stephane Nicoll's avatar
      Properly identify accessor methods · 9b1003d9
      Stephane Nicoll authored
      This commit fixes the binder so that it property identifies JavaBean
      accessors. Previously an accessor named `get` or `is` was identified.
      Similarly, a setter named `set` was identified.
      
      Closes gh-12363
      9b1003d9
    • Stephane Nicoll's avatar
      Polish · 36ed7ae6
      Stephane Nicoll authored
      36ed7ae6
    • Stephane Nicoll's avatar
      Fix description of JDBC starter · 3804466a
      Stephane Nicoll authored
      Closes gh-12387
      3804466a
    • Andy Wilkinson's avatar
      Merge branch '1.5.x' · bf84215b
      Andy Wilkinson authored
      bf84215b