Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
RecoveringDeserializationExceptionHandlerTests
* In Spring Framework 6.2.x, it is no longer possible to inject by the target type if the bean definition uses an interface as its return type. Fix this situation in `RecoveringDeserializationExceptionHandlerTests`, where it was defining the bean type as `KafkaOperations`, but injecting as `KafkaTemplate`. This fix makes the bean definition return `KafkaTemplate` (the target type) and then the injection can use either `KafkaOperations` or `KafkaTemplate`.
- Loading branch information