0

アスペクトはうまく機能しますが、メソッド joinPoint.getArgs () が null を返すのはなぜですか? 理由は何ですか?修正方法は?スタンドアロン バージョンは正しく動作しますが、Jetty を使用すると常に null が返されます。Spring 3.2、Spring Security を使用しています。

In config Spring: <aop:aspectj-autoproxy/>

@Validated
public interface Service {

    public String update(Long userId, String name);

}


@Service("myService")
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = Exception.class)
public class ServiceImpl implements Service {

    @MyAnnotation
    @Override    
    public String update(Long userId, String name) {

     //...
    }

}

@Aspect
@Component
public class MyAspect {                   

    @Around("@annotation(annotation)")
    public Object myAround(ProceedingJoinPoint joinPoint, MyAnnotation annotation)                                    throws Throwable {

        Object[] args = joinPoint.getArgs();            
        args = null!
    }
}
4

0 に答える 0