Aspect‐Oriented Programming (AOP) with Spring - Yash-777/MyWorld GitHub Wiki

Aspect Oriented Programming with Spring

Enabling @AspectJ Support with Java configuration

To enable @AspectJ support with Java @Configuration add the @EnableAspectJAutoProxy annotation:

@Configuration
@EnableAspectJAutoProxy
public class AppConfig {

}