Spring AOP 는 static method 에서는 작동을 안한다.
Subject line basically says it all. I have a static method I want to intercept so that around advice can be applied to it. I can get this to work with any non-static methods but I'm unsure how to allow static methods to be intercepted.
-->
You can't do that with Spring AOP, because it is proxy based. You have to use AspectJ. Take a look at this simple example: http://blog.jayway.com/2007/02/16/static-mock-using-aspectj/
'백엔드 > Java' 카테고리의 다른 글
스프링 RestuFul API 에서 PUT / DELETE 메소드 가능하게 하는방법 (0) | 2024.03.20 |
---|---|
RestFul URL 패턴 주의점. (0) | 2024.03.20 |
메세지 컨버터 (0) | 2024.03.20 |
다중 transactionManager (0) | 2024.03.20 |
Spring @Scheduled 사용시 (0) | 2024.03.20 |
Filter 와 Interceptor (0) | 2024.03.20 |
멀티스레드 환경에서의 Thread-safe 테스트 (0) | 2024.03.20 |
하나의 프레임워크에서어 앱 업로드와 웹 업로드시 문제점 (0) | 2024.03.20 |
댓글