使用Spring IoC和JavaConfig配置AspectJ方面?

使用Spring IoC和JavaConfig配置AspectJ方面?,第1张

使用Spring IoC和JavaConfig配置AspectJ方面?

事实证明,有一个

org.aspectj.lang.Aspects
专门为此目的提供的类。看来该
aspectOf()
方法是由LTW添加的,这就是为什么它在XML配置中可以正常工作,而不是在编译时起作用的原因。

为了解决此限制,

org.aspectj.lang.Aspects
提供了一种
aspectOf()
方法:

@Beanpublic com.xyz.profiler.Profiler profiler() {    com.xyz.profiler.Profiler profiler = Aspects.aspectOf(com.xyz.profiler.Profiler.class);    profiler.setProfilingStrategy(jamonProfilingStrategy()); // assuming you have a corresponding @Bean method for that bean    return profiler;}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5060134.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存