Spring @EnableRetry throws InternalAutoProxyCreator Spring @EnableRetry throws InternalAutoProxyCreator spring spring

Spring @EnableRetry throws InternalAutoProxyCreator


Retry expect aspect dependencies which be solved using 2 solutions:

including spring-boot-starter-aop solved this for me and ensured versioning compatibility with the rest of Spring Boot.

Or

add the following dependency into my pom:

<dependency>  <groupId>org.springframework</groupId>  <artifactId>spring-aspects</artifactId></dependency>