diff --git a/src/reference/docbook/new-in-3.2.xml b/src/reference/docbook/new-in-3.2.xml index e90ed8595a..9b98f845c8 100644 --- a/src/reference/docbook/new-in-3.2.xml +++ b/src/reference/docbook/new-in-3.2.xml @@ -38,6 +38,21 @@ +
+ Spring MVC Test framework + + First-class support for testing Spring MVC applications with a + fluent API and without a servlet container. Server-side tests involve + use of the DispatcherServlet while client-side + REST tests rely on the RestTemplate. + See the following presentation for more information before + documentation is added: + + "Testing Web Applications with Spring 3.2". + + +
+
Content negotiation improvements diff --git a/src/reference/docbook/remoting.xml b/src/reference/docbook/remoting.xml index c0f831c6b7..a31ea543f6 100644 --- a/src/reference/docbook/remoting.xml +++ b/src/reference/docbook/remoting.xml @@ -1389,15 +1389,15 @@ String result = specifying an implementation of ClientHttpRequestFactory. Spring provides the implementation - CommonsClientHttpRequestFactory that uses the - Jakarta Commons HttpClient to create requests. - CommonsClientHttpRequestFactory is configured + HttpComponentsClientHttpRequestFactory that uses the + Apache HttpComponents HttpClient to create requests. + HttpComponentsClientHttpRequestFactory is configured using an instance of - org.apache.commons.httpclient.HttpClient which + org.apache.http.client.HttpClient which can in turn be configured with credentials information or connection pooling functionality. - The previous example using Jakarta Commons + The previous example using Apache HttpComponents HttpClient directly rewritten to use the RestTemplate is shown below