1. 22 3月, 2019 1 次提交
  2. 05 7月, 2016 1 次提交
  3. 19 5月, 2015 1 次提交
  4. 03 3月, 2015 1 次提交
  5. 05 1月, 2015 1 次提交
    • S
      Merged HttpClient defaults with local customizations · bce145c0
      Stephane Nicoll 提交于
      Update HttpComponents wrapper to merge local customizations with the
      default of the current HttpClient instead of overriding everything.
      
      This is available as from HttpComponents 4.4. that exposes the default
      request config from the  client via the Configurable interface. If the
      client does not implement such interface, the previous behaviour is
      applied
      
      Issue: SPR-12583
      bce145c0
  6. 29 12月, 2014 1 次提交
    • S
      Allow default settings of a custom HttpClient to apply · 71783c5d
      Stephane Nicoll 提交于
      Previously the default settings of a custom HttpClient were always
      ignored since a RequestConfig instance was always set no matter if
      some customizations were applied or not.
      
      This commit keeps an internal RequestConfig object instance that is
      only initialized if the user applies a customization. If he does not, the
      default settings of the HttpClient are used as it should.
      
      Note that if the HttpComponents API exposed the default RequestConfig
      of a given HttpClient, we would be able to merge our customizations with
      the one specified by the client. Unfortunately, such API does not exist
      and the "defaultSettingsOfHttpClientLostOnExecutorCustomization" test
      illustrates that limitation.
      
      Issue: SPR-12540
      71783c5d
  7. 22 12月, 2014 1 次提交
    • S
      Customize connection request timeout · aafdcecf
      Stephane Nicoll 提交于
      Prior to this commit it was not possible to easily customize the
      connection request timeout used by the HttpClient. Both
      `HttpComponentsClientHttpRequestFactory` and
      `HttpComponentsClientHttpRequestFactoryTests` have been updated to
      support a `connectionRequestTimeout` property.
      
      Issue: SPR-12166
      aafdcecf
  8. 28 10月, 2014 1 次提交
  9. 21 10月, 2014 1 次提交
  10. 11 3月, 2014 1 次提交
    • S
      Fix custom config with older HttpClient · 7a6ec695
      Stephane Nicoll 提交于
      Since HttpClient 4.3, custom configuration such as the connection
      timeout and the socket timeout are set in a RequestConfig object
      stored in the HttpContext.
      
      Unfortunately, older HttpClients are not supporting this
      infrastructure and new clients throw an exception when the
      deprecated API is used.
      
      This commit detects if the client is an "old" implementation and
      set the configuration through the deprecated means to restore
      full backward compatibility with these features.
      
      Issue: SPR-11442
      7a6ec695
  11. 29 12月, 2012 1 次提交
  12. 23 6月, 2012 1 次提交
    • R
      Add support for HTTP PATCH method · a0747458
      Rossen Stoyanchev 提交于
      The HTTP PATCH method is now supported whereever HTTP methods are used.
      Annotated controllers can be mapped to RequestMethod.PATCH.
      
      On the client side the RestTemplate execute(..) and exchange(..)
      methods can be used with HttpMethod.PATCH. In terms of HTTP client
      libraries, Apache HttpComponents HttpClient version 4.2 or later is
      required (see HTTPCLIENT-1191). The JDK HttpURLConnection does not
      support the HTTP PATCH method.
      
      Issue: SPR-7985
      a0747458
  13. 31 1月, 2012 1 次提交
    • C
      Rename modules {org.springframework.*=>spring-*} · 02a4473c
      Chris Beams 提交于
      This renaming more intuitively expresses the relationship between
      subprojects and the JAR artifacts they produce.
      
      Tracking history across these renames is possible, but it requires
      use of the --follow flag to `git log`, for example
      
          $ git log spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history up until the renaming event, where
      
          $ git log --follow spring-aop/src/main/java/org/springframework/aop/Advisor.java
      
      will show history for all changes to the file, before and after the
      renaming.
      
      See http://chrisbeams.com/git-diff-across-renamed-directories
      02a4473c
  14. 11 4月, 2011 1 次提交
  15. 26 1月, 2011 1 次提交
  16. 24 2月, 2009 1 次提交
  17. 21 2月, 2009 1 次提交
  18. 13 2月, 2009 1 次提交
  19. 13 8月, 2008 2 次提交