Presentation is loading. Please wait.

Presentation is loading. Please wait.

백기선 whiteship2000@gmail.com http://whiteship.tistory.com Advising beans 백기선 whiteship2000@gmail.com http://whiteship.tistory.com www.springframework.co.kr.

Similar presentations


Presentation on theme: "백기선 whiteship2000@gmail.com http://whiteship.tistory.com Advising beans 백기선 whiteship2000@gmail.com http://whiteship.tistory.com www.springframework.co.kr."— Presentation transcript:

1 백기선 whiteship2000@gmail.com http://whiteship.tistory.com
Advising beans 백기선

2 차례 AOP 소개 Classic Spring aspects Autoproxying pure-POJO aspects
AspectJ aspects 요약

3 AOP 소개

4 AOP 용어 정리 Advice : 언제 무엇을 할 지 나타냅니다. Joinpoint : Advice를 적용할 수 있는 지점.
Pointcut : Joinpoint의 부분집합 Aspect : Advice와 Pointcut을 모아놓은 것 Weaving : Aspect를 적용하는 작업. Introduction : 새로운 메소드 또는 필드 추가. Target : Advice의 대상이 되는 객체. Proxy : Target에 Advice를 적용한 객체. Advisor : 하나의 Advice와 하나의 Pointcut을 합쳐놓은 것

5 AOP 용어 이해하기 Joinpoint

6 AOP 용어 이해하기 Pointcut

7 AOP 용어 이해하기 Proxy와 Target

8 Spring AOP Classic Spring proxy-based AOP
@AspectJ annotation-driven aspects Spring 2.0, Java 5 이상에서 사용 가능. Pure-POJO aspects Spring 2.0 이상에서 사용 가능. Injected AspectJ aspects

9 Spring AOP의 특징 자바 코드로 작성할 수 있다. Proxy 객체를 사용한다.
오직 메소드 실행 Joinpoint만 지원한다.

10 Classic Spring aspects
Advice 만들기 Pointcuts 과 Advisor 정의하기 ProxyFactoryBean 사용하기

11 Classic Spring aspects Advice

12 Classic Spring aspects Pointcut

13 Classic Spring aspects Pointcut
org.springframework.aop.support.Perl5Regex pMethodPointcut org.springframework.aop.support.JdkRegexp MethodPointcut AspectJ Pointcut 표현식을 사용한 Pointcut org.springframework.aop.aspectj.AspectJExpr essionPointcut

14 Classic Spring aspects Advisor
Advice + Pointcut 기본 Advisor org.springframework.aop.support.DefaultPointcutAdvisor 정규 표현식 Pointcut을 직접 입력할 수 있는 Advisor org.springframework.aop.support.RegexpMethodPointcutA dvisor AspectJ Pointcut을 직접 입력할 수 있는 Advisor org.springframework.aop.aspectj.AspectJExpressionPointcut Advisor

15 ProxyFactoryBean 사용하기

16 Classic Spring aspects ProxyFactoryBean
org.springframework.aop.framework.Pr oxyFactoryBean target interceptorNames proxyInterfaces

17 Class Spring aspects 예제
중복되는 코드 발생. 단일 책임 원칙 위배. 코드 가독성 저하. Aspect 사용 후. 보다 객체 지향 적인 방법으로 코딩 가능. 예제 코드 test/chapter4/ClassicSpringAopTest.java

18 ProxyFactoryBean 단점 Target 마다 하나 씩 ProxyFactoryBean을 만들어 주어야 합니다.
Target bean의 이름을 변경해주어야 합니다. 하지만 이미 Target은 Advisor 또는 Pointcut을 통해서 알 수 있습니다. 그렇다면... Proxy를 알아서 만들 수 있지 않을까요?

19 Autoproxying Classic Spring aspects Autoproxying
AutoProxyCreator bean 설정하기 @AspectJ aspects Autoproxing <aop:aspectj-autoproxy /> 엘리먼트 등록하기 BeanPostProcessor 구현체로써, 등록되어 있는 bean들의 정보를 바탕으로 Proxy 객체를 자동으로 생성합니다.

20 Classic Spring aspects Autoproxying
BeanNameAutoProxyCreator beanNames 속성에 설정한 bean들의 Proxy를 생성합니다. AbstractAdvisorAutoProxyCreator AspectJAwareAdvisorAutoProxyCreator @AspectJ 애노테이션이 붙어있는 bean의 Proxy를 생성합니다. DefaultAdvisorAutoProxyCreator Spring Container에 등록되어 있는 Advisor들을 바탕으로 Proxy를 생성합니다. InfrastructureAdvisorAutoProxyCreator Spring이 기본으로 제공하는 Advisor들이 적용되는 Target의 Proxy를 생성합니다. 테스트 용도도 추정.

21 Autoproxying @AspectJ aspects
aop 네임스페이스 추가. <aop:aspectj-autoproxy />

22 Autoproxing 예제 기본의 코드에서 ProxyFactoryBean 설정 제거
DefaultAdvisorAutoProxyCreator bean 설정하기 @AspectJ aspect 구현 <aop:aspectj-autoproxy /> 사용하기 test/AnnotationAspectTest.java

23 Declaring pure-POJO aspects
특정(규약 역할을 하는) 클래스를 상속받으면 안 된다. public class Foo extends javax.servlet.http.HttpServlet{ … 특정 (규약 역할을 하는) 인터페이스를 구현하면 안 된다. public class Bar implements javax.ejb.EntityBean{ … 특정 (규약 역할을 하는) 애노테이션을 붙이면 안 된다. @javax.ejb.Entity public class Baz{ …

24 POJO Aspect 구현하기 별다른 설명이 필요 한가요?
POJO를 Aspect로 사용하는 마술은 bean 설정에서 이루어 집니다. <aop> 네임스페이스를 공부해야 할 시간이 왔습니다.

25 aop 네임스페이스

26 POJO Aspect 선언하기

27 POJO Aspect 예제 POJO Aspect 구현(Audience.java) 구현한 클레스를 bean으로 등록
aop 네임스페이스로 Aspect 정의 test/PojoAspectTest.java

28 AspectJ 장점 단점 다양한 Joinpoint 지원. 다양한 Pointcut 표현식 지원. 별도의 문법을 익혀야 함.
별도의 컴파일 과정이 필요함.

29 AspectJ 예제 AspectJ Asepct 만들기 bean으로 등록하기 AJDT로 컴파일하기

30 Summary AOP는 객체 지향 프로그래밍을 보완하는 강력한 도구이다.
Spring provides an AOP framework that lets you insert aspects around method executions. You have several choices in how you can use aspects in your Spring applications. Finally, there are times when Spring AOP isn’t powerful enough and you must turn to AspectJ for more powerful aspects.

31 발표 후, 질문 및 Comment 양철근 : 참 좋았어요. 같은 Advice의 적용 순서. 최한수 : 졸려~ X 2
김계옥 : 갈수록 발표 능력이 좋아져. 설명과 예제의 조화, 졸릴 때 질문 귿. 심미혜 : 약간 빠르다. 네 이상.


Download ppt "백기선 whiteship2000@gmail.com http://whiteship.tistory.com Advising beans 백기선 whiteship2000@gmail.com http://whiteship.tistory.com www.springframework.co.kr."

Similar presentations


Ads by Google