1. 30 1月, 2016 6 次提交
  2. 29 1月, 2016 4 次提交
  3. 28 1月, 2016 1 次提交
  4. 27 1月, 2016 10 次提交
  5. 26 1月, 2016 11 次提交
  6. 25 1月, 2016 6 次提交
  7. 23 1月, 2016 2 次提交
    • B
      Clarify RequestMappingHandlerAdapter javadoc · 2b3ad218
      Brian Clozel 提交于
      This commit updates the javadoc of
      `RequestMappingHanderAdapter.setCacheSecondsForSessionAttributeHandlers`
      to explain how one can disable that feature and prevent "Cache-Control"
      directives from being added when `@SessionAttributes` annotations are
      used on Controllers.
      
      Issue: SPR-13598
      2b3ad218
    • B
      Register prefixed path patterns with FixedVersionStrategy · 84fe46cd
      Brian Clozel 提交于
      Prior to this change, configuring a `FixedVersionStrategy` like so
      would configure a single "/js/**" path pattern:
      
      ```
      versionResourceResolver.addFixedVersionStrategy("v1.0.0","/js/**");
      ```
      
      This commit makes sure that for each path pattern, its prefixed version
      is added to the map. For example, the previous configuration also
      adds "/v1.0.0/js/**".
      
      Issue: SPR-13883
      84fe46cd