1. 05 10月, 2013 1 次提交
  2. 26 9月, 2013 1 次提交
  3. 25 9月, 2013 1 次提交
    • B
      Add IPv6 support in RestTemplate · 2dd44801
      Brian Clozel 提交于
      Prior to this commit, RestTemplate would not would
      not accept IPv6 raw addresses in URLs because UriComponentsBuilder
      would not parse/encode the Host part correctly.
      
      The UriComponentsBuilder now parses and encode raw IPv6 addresses
      in the "[1abc:2abc:3abc::5ABC:6abc]" format and also supports the
      use of IPv6 scope_ids (see JDK8 java.net.Inet6Address),
      like "[1abc:2abc:3abc::5ABC:6abc%eth0]".
      
      Issue: SPR-10539
      2dd44801
  4. 23 8月, 2013 1 次提交
  5. 31 7月, 2013 1 次提交
  6. 15 5月, 2013 1 次提交
  7. 14 5月, 2013 1 次提交
  8. 08 5月, 2013 1 次提交
  9. 03 5月, 2013 3 次提交
  10. 19 3月, 2013 2 次提交
  11. 09 3月, 2013 1 次提交
    • O
      UriComponentsBuilder parse of empty fragments · 3eb36106
      Oliver Gierke 提交于
      Check for an empty fragment in UriComponentsBuilder.fromUriString(...)
      to prevent the invocation of fragment(...).
      
      Previously, UriComponentsBuilder.fromUriString(...) threw an exception
      in the case of an empty fragment being provided (e.g. /example#).
      
      Issue: SPR-10363
      3eb36106
  12. 20 2月, 2013 1 次提交
  13. 16 2月, 2013 1 次提交
    • R
      Ignore path parameters in request mappings · 5b1165b1
      Rossen Stoyanchev 提交于
      Before this change the presence of path params (e.g. "/foo;q=1/bar")
      expected the request mapping to contain a URI variable in the place of
      semicolon content (e.g. either "/{foo}/bar" or "/{foo};{fooParams}").
      
      The change ensures path params are ignored in @RequestMapping patterns
      so that "/foo/bar" matches to "/foo;q=1/bar" as well as
      "/foo;q=1;p=2/bar".
      
      Along with this change, the RequestMappingHandlerMapping no longer
      defaults to having semicolon content removed from the URL, which means
      @MatrixVariable is supported by default without the need for any
      further configuration.
      
      Issue: SPR-10234
      5b1165b1
  14. 15 2月, 2013 3 次提交
  15. 12 2月, 2013 4 次提交
  16. 26 1月, 2013 1 次提交
  17. 24 1月, 2013 2 次提交
  18. 23 1月, 2013 1 次提交
  19. 08 1月, 2013 2 次提交
  20. 02 1月, 2013 2 次提交
  21. 29 12月, 2012 9 次提交