Jeronimo López
Jeronimo López
Fix #3948 Improves the media type comparison logic for determining when to use streaming response handling by implementing proper type and subtype matching instead of relying on exact media type...
**Describe the bug** [AbstractProxyExchange](https://github.com/spring-cloud/spring-cloud-gateway/blob/main/spring-cloud-gateway-server-webmvc/src/main/java/org/springframework/cloud/gateway/server/mvc/common/AbstractProxyExchange.java) compares response `MediaType` with configured `StreamingMediaTypes` using `equals` method that takes into account MediaType parameters. In this code: ```java if (properties.getStreamingMediaTypes().contains(clientResponse.getHeaders().getContentType())) { ``` a response with...