@ -216,7 +216,7 @@ After `JdbcClient` and `RestClient` in 6.1, Spring Framework 7.0 introduces a `J
@@ -216,7 +216,7 @@ After `JdbcClient` and `RestClient` in 6.1, Spring Framework 7.0 introduces a `J
Spring MVC and WebFlux now provide first class support for API versioning. On the server side, you can map requests to controller methods and route requests to functional endpoints by taking into account the API version of the request. You can configure how the API version is resolved, parsed, and validated, mark versions as deprecated in order to notify clients, and more. On the client side, there is support for setting the API version on requests in `RestClient`, `WebClient`, and also with HTTP interface clients. On the testing side, there is support in `WebTestClient` as well as in MockMvc.
For more details see the reference docs for [Spring MVC](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webmvc-versioning.html) and [WebFlux](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webflux-versioning.html).
For more details see the reference docs for [Spring MVC](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webmvc-versioning.html) and [WebFlux](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/web/webflux-versioning.html), and the blog post [API Versioning in Spring](https://spring.io/blog/2025/09/16/api-versioning-in-spring).
### HTTP Interface Client configuration
@ -237,7 +237,7 @@ static class HttpServicesConfiguration extends AbstractHttpServiceRegistrar {
@@ -237,7 +237,7 @@ static class HttpServicesConfiguration extends AbstractHttpServiceRegistrar {
}
```
For more details, see the [reference documentation](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/integration/rest-clients.html#rest-http-service-client-group-config).
For more details, see the [reference documentation](https://docs.spring.io/spring-framework/reference/7.0-SNAPSHOT/integration/rest-clients.html#rest-http-service-client-group-config), and the blog post [HTTP Service Client Enhancements](https://spring.io/blog/2025/09/23/http-service-client-enhancements).
### HTTP Interface Client support for `InputStream` and `OutputStream`