首页 > 代码库 > @Pointcut在eclipse运行出错

@Pointcut在eclipse运行出错

@Pointcut("execution(public * com.dao..*.*(..))")

public void myMethod(){};

其他方法调用myMethid()如:

@Before("myMethod()")

运行时报错,查到另一个解释是eclipse版本太新,换个旧版本就解决了,不知道还有没有其他解决方法。

@Pointcut在eclipse运行出错