728x90
반응형
<bean id="audienceAdvisor" class="org.springframework.aop.aspectj.AspectJExpressionPointcutAdvisor">- <prorperty name="advice" ref="audienceAdvice"></prorperty>
- <prorperty name="expression" value="execution(* *.perform(..))"></prorperty>
- </bean>
excution(* *.perform(..))
excution : method가 실행될때
* : 모든 반환 값 타입에 대해
*. : 모든 클래스의
perform : perform() method
(..) : 인자의 개수에 상관없이
728x90
반응형
'Development > Java' 카테고리의 다른 글
[Spring In Action]@AspectJ 이용한 오토프록싱 (0) | 2011.09.09 |
---|---|
[Spring In Action]aspect용 AutoProxy생성 (0) | 2011.09.08 |
[Spring In Action]정규표현식 포인트컷 선언 (0) | 2011.09.06 |
[Spring In Action]4.1 AOP 용어 (0) | 2011.08.31 |
Exception 정보 제대로 처리하자.! (1) | 2011.07.21 |