1. 程式人生 > >spring的aop實現介面MethodBeforeAdvice 時報The hierarchy of the type MethodBeforeAdvice is inconsistent

spring的aop實現介面MethodBeforeAdvice 時報The hierarchy of the type MethodBeforeAdvice is inconsistent

spring的aop實現介面MethodBeforeAdvice 時報The hierarchy of the type MethodBeforeAdvice is inconsistent

錯誤英文意思就是:型別方法的層次結構是不一致的

這個就是缺少一個名字為aopalliance-1.0.jar的架包。網上下載後,直接匯入專案裡面就可以了。

然後Add unimplemented methods就可以了,會自動新增

import java.lang.reflect.Method;

@Override
	public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
		// TODO Auto-generated method stub
		
	}

這個問題我也是網上查到解決方法的,這個jar包非常好找