spring-framework
spring-framework copied to clipboard
Spring Framework
**Affects:** spring-framework 6.1.12 We are trying to manage a fleet of similarly-typed beans to inject. We've found a surprising circumstance where the existence of a dependency on one bean ("A")...
**Affects:** 6.1.6 --- This is a slight variation of SPR-17340 (#21874) that I've run into. I have a `Payload` class that derives from `Map`: ```java public class Payload extends HashMap...
A cookie has the optional attributes `Expires` and `Max-Age`. If both are set, the latter takes precedence. In method `adaptCookies()` of class `org.springframework.http.client.reactive.HttpComponentsClientHttpResponse` each HttpComponents `Cookie` is converted to a...
## Overview JDK 20 adopted Unicode CLDR-14032 (Common Locale Data Repository) which changed the space character that precedes the `period` (AM or PM) in formatted date/time text from a standard...
#30849 will introduce a `BeanDefinition` attribute that defines the order value of the related bean. As we need to take that attribute into account, adding an additional contribution that sets...
#33372 introduced an `ETag` type that begins to consolidate ETag handling. For 6.2, we can use it to further encapsulate comparisons logic, and also look to expose it on `HttpHeaders`...
The recent introduction of `ReactorNettyClientRequestFactory` brought a naming inconsistency with `ReactorClientHttpConnector` as well as `HttpComponentsClientHttpRequestFactory`: it would rather have to be called `ReactorClientHttpRequestFactory`. However, there is also `ReactorNetty2ClientHttpConnector`, so `ReactorClientHttpConnector`...
In some of the Spring Cloud scenarios, we expect the users to place serviceId instead of actual host/domain, and then we use it for load-balancing, getting instances from service registries,...
It looks like the general recommendation about SSE is to send messages at fixed interval to clients to probe the connection health (see https://github.com/spring-projects/spring-framework/issues/18523#issuecomment-470141717). Could Spring add this feature?
It looks like the general recommendation about SSE is to send messages at fixed interval to clients to probe the connection health (see https://github.com/spring-projects/spring-framework/issues/18523#issuecomment-470141717). Should it be the application responsibility...