本文介紹了在新線程中調用連接點時,Spring方面失敗的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在使用帶有環繞方面的Spring 3.0.5。
@Above方面可以完美地工作。AOP表達式以一串Bean的接口為目標。
方面在調用前后執行一些邏輯:
@Around(...)
public Object monitor(ProceedingJoinPoint pjp) throws Throwable {
// some code
Obj o = pjp.proceed();
// some code
}
沒什么大不了的。
現在,我正在嘗試創建另一個方面,如果截取的方法花費的時間太長,該方面會拋出異常。
private static ExecutorService executor = Executors.newCachedThreadPool();
@Around(...)
public Object monitor(ProceedingJoinPoint pjp) throws Throwable {
Object obj = null;
Callable<Object> task = new Callable<Object>() {
public Object call() {
return pjp.proceed();
}
};
Future<Object> future = executor.submit(task);
try {
obj = future.get(timeout, TimeUnit.MILLISECONDS);
} catch (TimeoutException ex) {
...
} catch (InterruptedException e) {
// we ignore this one...
} catch (ExecutionException e) {
throw e.getCause(); // rethrow any exception raised by the invoked method
} finally {
future.cancel(true); // may or may not desire this
}
return obj;
}
在僅應用此方面的情況下執行代碼時,我得到以下異常:
java.lang.RUNTIME異常:java.lang.IlLegalStateException:否
找到方法調用:檢查AOP調用是否正在進行,
并且ExposeInvocationInterceptor位于攔截器鏈中。
從Spring documentation我讀到:
“類ExposeInvocationInterceptor
將當前方法調用公開為線程本地對象的偵聽器。”
所以看起來目標丟失了,因為我基本上啟動了一個新線程,而新線程沒有訪問本地線程的權限。是否有解決此問題的方法或更好的方法?
謝謝
推薦答案
解決方案非常簡單。檢查方法花費多長時間的方面必須是方面”鏈”中的最后一個方面。我在方面上使用了@Order
注釋,使其成為最后一個要執行的方面。
成功了。
如果方面不是最后執行的,則新線程無法訪問包含ExposeInvocationInterceptor
類的ThreadLocal變量。
這篇關于在新線程中調用連接點時,Spring方面失敗的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,