2

以下では、aop.xmlでアスペクトを定義しています

<aspects>
      <aspect name="com.customer.MyCustomAspect" />
 </aspects>

私のカスタムアスペクトは以下に定義されています

    @Aspect
    public class MyCustomAspect{
        @Around("@annotation(requiredPrivilege)")
            public Object myAdvice(ProceedingJoinPoint pjp) throws Throwable {

    }

struts 2 アクションからサービス メソッドを呼び出すと、myAdvice は呼び出されません。私の従来のアクションではすべてが正常に機能しますが、struts 2 アクションでは機能しません (参考までに、struts2 スプリング プラグイン jar を使用しています)。私はStruts 2の問題は何ですか?

4

1 に答える 1