spring-framework
spring-framework copied to clipboard
Spring Framework
It would make sense to have a common utility to parse `java.time.Duration` from a `CharSequence`. Examples: * `10ms` -> 10 milliseconds * `10s` -> 10 seconds * `10m` -> 10...
Our current support for `@Order` is using an absolute number with a default value of "lowest precedence" (i.e. `Integer.MAX_VALUE`). We also have `@PriorityOrdered` to override such ordering in certain scenarios....
When using ```@SpringBootTest``` with JUnit Jupiter a pitest user had a problem when executing tests with pitest (see https://github.com/hcoles/pitest/issues/827). As far as my analysis brought me the cause is Spring...
My use case for wanting access to the headers in receipt callbacks is to communicate additional information about the result of processing of a message back to the client. Relevant...
Several tests from `WebClientIntegrationTests` are failing for me locally when port 80 is in use. To reproduce this ensure the build is not pulling results from the cache. ```bash $...
**Affects:** 5.3.20 GenericTypeResolver#resolveVariable(TypeVariable typeVariable, ResolvableType contextType) eventually resorts to recursively resolving the type of typeVariable by iterating over contextType.getInterfaces(). The first generic interface will hit the "// Fallback to bounds"-branch...
Currently in case of frozen AOP chain `CglibAopProxy` creates fixed callbacks for all methods of the target class, while in many cases only a couple of them actually need to...
This is a continuation of https://github.com/spring-projects/spring-framework/pull/25261
In my case, I was creating a ReconnectTask to connect to my WebSocket server. Here I noticed that the method start() or startInternal() in the abstract class ConnectionManagerSupport always sets...