[스프링교육학원,Spring Framework학원교육추천]스프링의 XML Schema기반 AOP지원, 어스팩트, 포인트컷, 정의방법(Spring AOP Namespace)
1. ASPECT 정의
- <aop:config> 태그내에 선언
<aop:config>
<aop:aspect id="myAspect" ref="oraclejava">
...
</aop:aspect>
</aop:config>
<bean id="oraclejava" class="...">
...
</bean>
2. pointcut의 정의
- <aop:config> 태그내에 선언
- 아래처럼 __EXPRESSION__을 정의할 수 잇다.
<aop:config>
<aop:pointcut id="businessService"
__EXPRESSION__="execution(* com.xyz.myapp.service..(..))"/>
</aop:config>
- 아래처럼 pointcut 메소드를 정의할 수 있다.
<aop:config>
<aop:pointcut id="businessService"
__EXPRESSION__="com.xyz.myapp.OracleJava.myLogic()"/>
</aop:config>
아래처럼 OracleJava 클래스는 Aspect로서 정의되어 있어야 하고 myLogic 메소드는 @Pointcut으로 정의되야 한다.
package com.xyz.someapp;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
@Aspect
public class OracleJava {
......
@Pointcut("execution( com.xyz.myapp.service..(..))")
public void myLogic() {}
......
}
- 아래처럼 aop:aspect 내에 pointcut을 정의할 수도 있다.
<aop:config>
<aop:aspect id="myAspect" ref="OracleJava">
<aop:pointcut id="businessService"
__EXPRESSION__="execution(* com.xyz.myapp.service..(..))"/>
...
</aop:aspect>
</aop:config>
- 아래처럼 pointcut을 정의하고 사전충고에서 포인트컷을 참조하고 충고메소드를 정의할 수도 있다.
<aop:config>
<aop:aspect id="myAspect" ref="aBean">
<aop:pointcut id="businessService"
__EXPRESSION__="execution(* com.xyz.myapp.service..(..)) && this(service)"/>
<aop:before pointcut-ref="businessService" method="myLogic"/>
...
</aop:aspect>
</aop:config>
물론 위의 경우 Advice에서 myLogic이라는 메소드가 정의되어 있어야 한다.
public void myLogic(Object service) {
...
}
- 아래처럼 포인트컷 조합을 and, or, not등을 사용할 수 있다.
<aop:config>
<aop:aspect id="myAspect" ref="oraclejava">
<aop:pointcut id="businessService"
__EXPRESSION__="execution(* com.xyz.myapp.service..(..)) and bean(oraclejava)"/>
<aop:before pointcut-ref="businessService" method="myLogic"/>
...
</aop:aspect>
</aop:config>
오라클자바커뮤니티교육센터, 개발자전문교육, 개인80%환급
www.oraclejavacommunity.com평일주간(9:30~18:10) 개강
(7/28)[기업100%환급]안드로이드개발자과정
(8/04)[기업100%환급]C#4.0,WinForm,ADO.NET프로그래밍
(8/04)[기업100%환급]자바기초에서 JDBC, Servlet/JSP까지
(8/04)[기업100%환급]PL/SQL,ORACLE HINT,TUNING
(8/11)[기업100%환급]SQL기초에서 Schema Object까지
(8/11)[기업100%환급]Spring ,MyBatis,Hibernate실무과정
(8/11)[채용예정교육]오라클자바개발잘하는신입뽑기프로젝트,교육전취업확정
평일야간(19:00~21:50) 개강
(7/29)안드로이드개발자과정
(7/29)Spring3.X, MyBatis, Hibernate실무과정
(8/04)웹퍼블리싱 마스터
(8/05)JSP,Ajax,jQUERY,Spring,MyBatis,Hibernate속성과정
(8/08)닷넷(C#,Network,ADO.NET,ASP.NET)마스터과정
(8/11)SQL기초에서실무까지
(8/28)자바기초에서JSP,Ajax,jQuery,Spring3.2,MyBatis까지
주말(10:00~17:50) 개강
(8/02)Spring3.X, MyBatis, Hibernate실무과정
(8/02)C#,ASP.NET마스터
(8/02)웹퍼블리싱 마스터
(8/02)SQL초보에서 Schema Object까지
(8/09)개발자를위한PLSQL,SQL튜닝,힌트
(8/09)안드로이드개발자과정
(8/09)자바기초에서JSP,Ajax,jQuery,Spring3.2,MyBatis까지
(8/23)JAVA,Network&WEB&Framework(자바기초에서웹스프링까지)
주말저녁(18:30~22:20) 개강
(8/02)JAVA,Network&WEB&Framework
(8/09)SQL기초에서실무까지
댓글 없음:
댓글 쓰기