You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring Boot provides auto-configuration for aspect-oriented programming (AOP).
4
+
You can learn more about AOP with Spring in the {spring-framework-docs}/core.html#aop[Spring Framework reference documentation].
5
+
6
+
By default, Spring Boot's auto-configuration configures Spring AOP to use CGLib proxies.
7
+
To use JDK proxies instead, set `configprop:spring.aop.proxy-target-class` to `false`.
8
+
9
+
If AspectJ is on the classpath, Spring Boot's auto-configuration will automatically enable AspectJ auto proxy such that `@EnableAspectJAutoProxy` is not required.
0 commit comments