spring-framework
spring-framework copied to clipboard
Spring Framework
### Description When using Spring AOP to proxy a HelloService bean in combination with a custom BeanPostProcessor (MyPostProcessor) and a FactoryBean (MyFactoryBean), the AOP proxy is not applied to the...
**[Sébastien Deleuze](https://jira.spring.io/secure/ViewProfile.jspa?name=sdeleuze)** opened **[SPR-15961](https://jira.spring.io/browse/SPR-15961?redirect=false)** and commented See https://github.com/FasterXML/jackson-dataformats-binary/issues/110 --- **Issue Links:** - #20331 Support Protobuf serialization in WebFlux
## Overview As explained in #33692, due to limitations in Mockito it is not currently possible to support strict stubbing for mocks and spies created via `@MockitoBean` and `@MockitoSpyBean`. This...
`getConversationId` and `resolveContextualObject` are candidates for being converted to `default` methods, not sure about `registerDestructionCallback`.
It's very common to get first row of ResultSet or `null` for empty ResultSet, for example `JdbcStepExecutionDao::getLastStepExecution` from Spring Batch, see https://github.com/spring-projects/spring-batch/pull/4798 for background. We should call `Statement::setMaxRows` as hints...
CancellationExceptions are thrown instead of the expected ResourceAccessException during timeout scenarios. Handle the CancellationExceptions in order to throw an ResourceAccessException when timeout occurred Closes gh-33973
## Overview I kindly want to ask to resume the conversation on [this topic](https://github.com/spring-projects/spring-framework/issues/31544). It seems, that [people have to deal with this problem](https://stackoverflow.com/questions/69721042/order-auto-wired-list-in-spring-lower-than-lowest-precedence/79541168#79541168). What is desired, is that assume...
Hello, in Boot we have the use-case to get the order of a bean. We have the bean instance, and also the bean name. We tried: ```java return new AnnotationAwareOrderComparator()...
Related to GH-34669, but it requires the bean name matched first, and throw `BeanNotOfRequiredTypeException` if the bean type doesn't match required type from type reference. Take codes in Spring Batch...
Spring Boot Version: 3.4.2 Java Version: 21 When using spring web-mvc with kotlin coroutine support, adding a filter into the security chain appears to break the test completely Reproducer project:...