spring异常

来源:互联网 发布:淘宝店铺怎么装修页面 编辑:程序博客网 时间:2024/06/06 12:54
The type org.aopalliance.aop.Advice cannot be resolved. It is indirectly referenced from required .class files
源文件部分代码:
public class MinstrelAdvice implements MethodBeforeAdvice {
public void before(Method method, Object[] args, Object target)
      throws Throwable {
        .......
}
}
解决方法:
引入spring.jar(下带的org.aopalliance.*),因为Spring的aop的实现遵守了AOP联盟的约定,也就是它的切片都实现了org.aopalliance.aop.Advice接口
原创粉丝点击