1. 22 4月, 2014 2 次提交
    • S
      Polish static resource handling mechanism · 3d18cfea
      Sam Brannen 提交于
      - ResourceResolver and ResourceResolverChain now have a consistent API
        with regard to method names and terminology.
      
      - ResourceResolver and ResourceResolverChain now accept
        List<? extends Resource> instead of List<Resource> for simplified
        programmatic use.
      
      - Improved Javadoc across the package.
      
      - Formatted code to align with standards.
      
      - Removed all references to ResourceUrlPathTranslator.
      
      Issue: SPR-10933
      3d18cfea
    • S
      Fix Javadoc formatting in ResourceHttpRequestHandler · 5365171f
      Sam Brannen 提交于
      5365171f
  2. 17 4月, 2014 1 次提交
    • R
      Expand static resource handling mechanism · 6cb9a144
      Rossen Stoyanchev 提交于
      An initial commit with expanded support for static resource handling:
      
      - Add ResourceResolver strategy for resolving a request to a Resource
        along with a few implementations.
      
      - Add PublicResourceUrlProvider to get URLs for client-side use.
      
      - Add ResourceUrlEncodingFilter and
        PublicResourceUrlProviderExposingInterceptor along with initial
        MVC Java config support.
      
      Issue: SPR-10933
      6cb9a144
  3. 09 4月, 2014 1 次提交
  4. 03 4月, 2014 2 次提交
  5. 28 3月, 2014 2 次提交
  6. 26 3月, 2014 1 次提交
    • R
      Revert "Improve suffix pattern check" · e92bbc80
      Rossen Stoyanchev 提交于
      This reverts commit 3474afb1.
      
      Unfortunately this change is likely to cause issues for applications
      that use regular expressions in a URI variable. I think we will have
      to leave at: if there are any dots in the last segment of the
      request path, regardless of whether they're in a URI var or not,
      the suffix pattern match is off.
      
      Issue: SPR-11532
      e92bbc80
  7. 25 3月, 2014 3 次提交
  8. 24 3月, 2014 3 次提交
  9. 15 3月, 2014 1 次提交
  10. 14 3月, 2014 1 次提交
  11. 13 3月, 2014 1 次提交
    • R
      Improve suffix pattern check · 3474afb1
      Rossen Stoyanchev 提交于
      After this change dots inside URI variables in a request mapping
      pattern are ignored and no longer considered an indication that
      the pattern contains a suffix itself.
      
      Issue: SPR-11532
      3474afb1
  12. 12 3月, 2014 1 次提交
  13. 07 3月, 2014 2 次提交
  14. 28 2月, 2014 3 次提交
  15. 15 2月, 2014 5 次提交
  16. 14 2月, 2014 3 次提交
  17. 13 2月, 2014 2 次提交
  18. 12 2月, 2014 3 次提交
  19. 09 2月, 2014 1 次提交
  20. 07 2月, 2014 2 次提交
    • R
      Improve expanding in MvcUriComponentsBuilder · 42d0470d
      Rossen Stoyanchev 提交于
      Before this change MvcUriComponentsBuilder could not create a
      UriComponentsBuilder for methods where the mapping has a URI variable
      and no matching method argument for it.
      
      For example a URI variable may be in the type-level mapping but not
      all methods may have an @PathVariable argument for it.
      
      This fix addresses the shortcoming such that MvcUriComponentsBuilder
      expands the method argument values available to it and leaves remaining
      URI variables to be further expanded via UriComponents.expand().
      
      Issue: SPR-11391
      42d0470d
    • R
      Polish MvcUriComponentsBuilder · bdb742b8
      Rossen Stoyanchev 提交于
      Issue: SPR-11391
      bdb742b8