The hierarchy of the type BeforeInfo is inconsiste

在使用spring前置通知时,发现出现以下问题:

The hierarchy of the type BeforeInfo is inconsiste

解决方法:如果你写的类A 继承了 B 而B 继承 C,如果接口c或类C不在你所引的jar 包中,就报此信息,导入jar 包即可。

    在此程序代码中则是MethodBeforeAdvice的父类不在org.springframework.aop中,需要将aopalliance-1.0.jar包导入到项目中即可。

   aopallian ce-1.0.jar 这个包是AOP联盟的api包,里面包含了针对面向切面的接口,通常spring等具备其他动态织入功能的框架依赖此包.

你可能感兴趣的:(The hierarchy of the type BeforeInfo is inconsiste)