diff --git a/spring-beans/src/main/java/org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.java b/spring-beans/src/main/java/org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.java index 6120f32c1c..94a80f3b59 100644 --- a/spring-beans/src/main/java/org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.java +++ b/spring-beans/src/main/java/org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.java @@ -583,6 +583,10 @@ public class AutowiredAnnotationBeanPostProcessor implements SmartInstantiationA return; } if (method.getParameterCount() == 0) { + if (method.getDeclaringClass().isRecord()) { + // Annotations on the compact constructor arguments made available on accessors, ignoring. + return; + } if (logger.isInfoEnabled()) { logger.info("Autowired annotation should only be used on methods with parameters: " + method);