2014년 5월 7일 수요일

spring framework aop네임스페이스를 이용하여 AOP구현(Spring3.X,박태근),스프링3 강좌, AOP잘 이해하자구요

spring framework aop네임스페이스를 이용하여 AOP구현(Spring3.X,박태근),스프링3 강좌, AOP잘 이해하자구요



> - Spring3.X의 aop Namespace를 이용하여

-------------------------------OnjWorldImpl --------------------------------------

package onj.edu.project_Namespace;

import onj.edu.project.OnjWorld;

public class OnjWorldImpl {
public void onjHello(){
System.out.println("Onj에 오신것을 환영합니다. ----Hello1----");
}

public void onjHello1() throws Exception{
System.out.println("Onj에 오신것을 환영합니다.---- Hello2----");
//throw new Exception("Exception");
}

public void onjGoodBye(){
System.out.println("끝났어요~~~~~~");
}
 
}

----------------------------------- OnjWorldBean -----------------------------

package onj.edu.project_Namespace;


public class OnjWorldBean {

private OnjWorldImpl dependency;

public void run() throws Exception{
dependency.onjHello();
dependency.onjHello1();
dependency.onjGoodBye();
}

public void setDependency(OnjWorldImpl dependency){
this.dependency = dependency;
}
}

-------------------- OnjWorldAdvice ----------------------------------------------------
package onj.edu.project_Namespace;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;

public class OnjWorldAdvice {
      public void beforeAdvice(JoinPoint joinPoint){
System.out.println("----비포 실행----"
                                        + joinPoint.getSignature().getDeclaringTypeName()+ ","
        +  joinPoint.getSignature().getName());
}

public Object aroundAdvice(ProceedingJoinPoint joinPoint) throws Throwable{
System.out.println("----어라운드 비포 실행----"
                                          + joinPoint.getSignature().getDeclaringTypeName()+ ","
          +  joinPoint.getSignature().getName());
Object rVal = joinPoint.proceed();
                      System.out.println("----어라운드 에프터 실행----"
                                                + joinPoint.getSignature().getDeclaringTypeName()+ ","
+  joinPoint.getSignature().getName());
return rVal;
}
}

------------------------------ OnjWorldExam  -------------------------------------
package onj.edu.project_Namespace;

import org.springframework.context.support.GenericXmlApplicationContext;

public class OnjWorldExam {
public static void main(String args[]) throws Exception{
GenericXmlApplicationContext ctx = new GenericXmlApplicationContext();
ctx.load("worldName.xml");
ctx.refresh();

OnjWorldBean bean = (OnjWorldBean)ctx.getBean("onjWorldBean");
System.out.println("--------bean------------");
bean.run();
ctx.close();
}
}

----------------------------- worldName ---------------------------------------------

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

<aop:config>
<aop:pointcut  id="onjpointcut" __EXPRESSION__="execution(* onj.edu.project_Namespace..onjHello(..))"/>
      <aop:aspect ref="advice">
<aop:before pointcut-ref ="onjpointcut" method="beforeAdvice"/>
<aop:around pointcut-ref="onjpointcut"  method="aroundAdvice"/>
      </aop:aspect>
</aop:config>

<bean id="advice" class="onj.edu.project_Namespace.OnjWorldAdvice"/>

<bean id="onjWorldImpl" class="onj.edu.project_Namespace.OnjWorldImpl"/>

<bean id="onjWorldBean" class="onj.edu.project_Namespace.OnjWorldBean">
<property name="dependency" ref="onjWorldImpl"/>
</bean>
</beans> 


오라클자바커뮤니티 오프라인 교육센터, 개발자 전문교육, 개인80%환급 www.oraclejavacommunity.com

평일주간(9:30~18:20) 개강
(5/12)[기업100%환급]Spring ,MyBatis,Hibernate실무과정
(5/12)안드로이드개발자과정
(5/19)C#4.0,ADO.NET,Network 프로그래밍
(5/19)Spring3.X, MyBatis, Hibernate실무과정
(5/19)[기업100%환급]PL/SQL,ORACLE HINT,TUNING
(5/21)[교육전취업확정]Spring,MyBatis,XPlatform실무프로젝트과정
(5/26)SQL초보에서실전전문가까지
(5/27)JAVA,ORACLE 실무개발자과정

평일야간(19:00~21:50) 개강
(5/15)Spring3.X, MyBatis, Hibernate실무과정
(5/16)자바기초에서JSP,Ajax,jQuery,Spring3.2,MyBatis까지
(5/16)C#,ASP.NET마스터
(5/16)SQL초보에서실전전문가까지
(5/16)웹퍼블리싱 마스터
(5/19)안드로이드개발자과정
(5/29)JAVA&WEB프레임워크실무과정

주말(10:00~17:50) 개강
(5/10)Spring3.X, MyBatis, Hibernate실무과정
(5/17)웹퍼블리싱 마스터
(5/17)C#,ASP.NET마스터
(5/17)JAVA&WEB프레임워크실무과정
(5/17)SQL초보에서실전전문가까지
(5/17)안드로이드개발자과정
(5/24)닷넷실무자를위한WPF개발자과정

주말저녁(18:30~22:20) 개강
(5/17)자바&웹,jQUERY,스프링프레임워크
(5/17)SQL기초에서 Schema Object까지


댓글 없음:

댓글 쓰기