2
是否可以在春季製作@Aspect請求範圍?因爲它似乎不起作用,而且它有道理;代理對象實際上並未實際注入,建議僅由運行時應用。只是想知道...是否可以在春季製作@Aspect請求範圍
例子:
@Aspect
public class MyAspect {
// expecting this to get autowired per request
@Autowired private HttpServletRequest request;
@Around(...)
public void doSomething(ProceedingJoinPoint pjp) {
// something here
pjp.proceed();
// something there
}
}
而且在XML:
<bean class="MyAspect" scope="request" />
你想要做什麼? – Cygnusx1
@ Cygnusx1:用例子編輯的問題 – Kevin