首页 > 代码库 > The hierarchy of the type is inconsistent错误问题
The hierarchy of the type is inconsistent错误问题
在springMVC的AOP 面向切面编程中,引用:
package com.ah.aop;
import java.lang.reflect.Method;
import org.springframework.aop.MethodBeforeAdvice;
public class MyMethodBeforeAdvice implements MethodBeforeAdvice {
@Override
public void before(Method arg0, Object[] arg1, Object arg2)
throws Throwable {
// TODO Auto-generated method stub
}
};
在实现前置通知接口MethodBeforeAdvice时候,出现The hierarchy of the type is inconsistent 解释为:层次结构的类型不一致;
可能的原因:自己的类继承于某个类,这个类或者这个类继承的类或者再往上继承的某个类所在的jar包没有被引入。
The hierarchy of the type is inconsistent错误问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。