To enable @AspectJ support with Java @Configuration add the @EnableAspectJAutoProxy annotation:
@Configuration
@EnableAspectJAutoProxy
public class AppConfig {
}
To enable @AspectJ support with XML based configuration use the aop:aspectj-autoproxy element:
<aop:aspectj-autoproxy/>