我的观点如下:
@Aspect
public class SomeAspect{
//define pointcuts
// define Advices pertaining to pointcuts
}
我的aspect-config xml文件:
这完全没问题
我需要的是:
我想摆脱每个Aspect的写bean定义,如上面的config xml文件中所示.
我尝试了以下方法:
在SomeAspect上添加了@Component,在xml中添加了< context-component-scan>使用包含我的Aspect的相应包,希望我的类被选为Bean和Aspect.
但是,我的看点根本没有被提升.
有什么指针吗?
最佳答案
上下文:component-scan元素有一个子元素,您可以使用该子元素包含用于扫描拾取的注释类.
原文链接:https://www.f2er.com/spring/431477.html查看上下文:include-filter元素及其属性.
我认为你尝试过的东西会起作用,但如果没有像你那样完全看到它,很难肯定地说.