프로그래머의 삶 Programmer's Life/SpringFramework

1. Advice

Oliver's World 2008. 11. 1. 15:47
728x90

Advice 인터페이스

1. org.springframework.aop.MethodBeforeAdvice

 - 대상 객체 메소드 실행전 공통기능 실행

2. org.springframework.aop.AfterReturningAdvice

 - 메소드 실행후 공통기능실행

3. org.springframework.aop.ThrowsAdvice

 - 예외발생시 공통기능 실행

4. org.springframework.aop.MethodInterceptor

 - 세가지 Advice 를 하나로 묶은 Advice , 메서드 실행전,후, 예외발생 시점에서 공통기능 수행

728x90