我需要匹配 abc.cde.A.fun(cv.bc.F f,Map<String,String> map)
方法,然后切面类中内容如下:
@Aspect
@Component
public class Inte {
@Pointcut("execution(* abc.cde.A.fun(..))")
public void pointcut() {
//
}
@Before("pointcut()")
public void bef() {
System.out.println("before ---------called.......");
}
}
以上, 当A#fun
方法被调用的时候并没有进入bef
方法, 然后我修改了上面Pointcut
表达式为:
execution(* *.*(..))
则所有方法调用都会触发bef
切面方法, 所以我spring
配置应该是没有问题的.
第一次使用, 麻烦大家帮我看看 谢谢!!!
该问题更换方式后已解决, 采用xml方法配置aspect 已经可以正常使用! annotation方式一直不能生效, 等工作完成后, 我会继续研究是否因为缺包原因导致, 如果有进展,我会附加问题原因. 谢谢大家!
<bean id="inte" class="abc.aspect.MyAspect"/>
<aop:config>
<aop:aspect id="aspect" ref="inte">
<aop:pointcut id="point" expression="execution(* abc.cde.A.fun(..))" />
<!--<aop:before method="defore" pointcut-ref="point"/>-->
<!--<aop:around method="around" pointcut-ref="point"/>-->
<aop:after-returning method="aftert" pointcut-ref="point" returning="retVal"/>
</aop:aspect>
</aop:config>
参考链接: https://docs.spring.io/spring/docs/current/spring-framework-reference/html/aop.html
1
wc951 2017-03-02 20:52:13 +08:00
官方参考文档里切点使用的 private 修饰符,不知道和这个有没有关系
|
3
wc951 2017-03-02 21:14:02 +08:00
但我感觉官方文档里说的公用切入点是要写全路径的
|