The hierarchy of the type GreetingBeforeAdvice is inconsistent


    今天照着《spring3.x企业应用开发实战》敲代码时,碰到这个问题,找了一下,发现是缺少jar包引起的问题。

    The hierarchy of the type GreetingBeforeAdvice is inconsistent 直译的话,是类的层次结构不一致。


    怎么理解呢? 当前的类继承于某个类,这个类或者这个类继承的类或者再往上继承的某个类所在的jar包没有被引入。


具体到自己的jar包问题

The hierarchy of the type GreetingBeforeAdvice is inconsistent_第1张图片



自己的spring引入jar包有

The hierarchy of the type GreetingBeforeAdvice is inconsistent_第2张图片


添加上缺失的jar包 aopalliance-1.0.jar

The hierarchy of the type GreetingBeforeAdvice is inconsistent_第3张图片


问题得到解决

The hierarchy of the type GreetingBeforeAdvice is inconsistent_第4张图片

你可能感兴趣的:(spring,继承,hierarchy,结构)