pom.xml은 바뀐게 없다. 저번에 설명을 못한 부분이 있는데 weaving이라는 것이다. 이부분은
http://najuung.tistory.com/65 이분의 사이트를 참조하라
바로 소스로 들어가자.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <?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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd"> <context:annotation-config></context:annotation-config> <context:component-scan base-package="com.gno.sample"></context:component-scan> <aop:aspectj-autoproxy /> <bean id="simpleCalcService" class="com.gno.sample.service.SimpleCalcServiceImpl"></bean> <bean id="calcDao" class="com.gno.sample.dao.CalcDaoImpl"></bean> <bean id="loggingAspect" class="com.gno.sample.aop.SimpleAopAspect"></bean> </beans> | cs |
기존 aop:config에서 scan과 annotation-config, autoproxy 가 추가 되었다. 그리고 기존 pointcut과 expression등은 사라졌다. simpleAppAspect 클래스를 살펴보자.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | package com.gno.sample.aop; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.Signature; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; @Aspect public class SimpleAopAspect { @Before("execution(* com.gno.sample.dao.CalcDAO.*(..)) ") public void before(JoinPoint joinPoint) { System.out.println("before!"); Signature signature = joinPoint.getSignature(); Object target = joinPoint.getTarget(); Object[] args = joinPoint.getArgs(); System.out.println("Signature : " + signature.toString()); System.out.println("target : " + target.toString()); System.out.println("name : " + signature.getName()); System.out.println("longName : " + signature.toLongString()); System.out.println("shortName : " + signature.toShortString()); } @After("execution(* com.gno.sample.dao.CalcDAO.*(..))") public void after(JoinPoint joinPoint) { System.out.println("after!"); Signature signature = joinPoint.getSignature(); Object target = joinPoint.getTarget(); Object[] args = joinPoint.getArgs(); System.out.println("Signature : " + signature.toString()); System.out.println("target : " + target.toString()); System.out.println("name : " + signature.getName()); System.out.println("longName : " + signature.toLongString()); System.out.println("shortName : " + signature.toShortString()); } } | cs |
Aspect oriented Programming 관점 지향 프로그래밍... 이다.
(출처:http://ezquest.tistory.com/entry/Spring)
위 그림처럼 logging이라던가 security(login 관련) 또는 transaction 이라던가를 횡단으로 특정한 곳을 보는 관점 지향 하는 프로그래밍이다. 여기에 사족을 좀 덧 붙이자면, 관점 지향이라고 해서 무언가 autowired된 객체를 변환한다던가 또는 기존 객체를 변환한다던가는 하지 못한다. 단지. 내가 보고자 하는 부분에 대해 지정한 일을 한다는 것이다.
예를 들면, 이런 이런 객체에 로깅을 한다. 또는 exception에 대해 로그를 남긴다. 또는 전체 세션에 대해 로그인을 감지한다. 마지막으로 트랜잭션에 대해 처리를 한다. 이런 일들을 도맡아 한다. 멤캐쉬 redis캐쉬, ehcached 역시 aop로 처리를 한다.
그럼 바로 aop 관련 예제를 보자.
1 2 3 4 5 6 7 8 9 10 11 | <!-- Aspectj --> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>1.6.11</version> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.6.11</version> </dependency> | cs |
pom.xml 설정은 위에 두가지를 선언한다.
다음은 context.xml 설정이다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | <?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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd"> <bean id="simpleCalcService" class="com.gno.sample.service.SimpleCalcServiceImpl"></bean> <bean id="calcDao" class="com.gno.sample.dao.CalcDaoImpl"></bean> <bean id="loggingAspect" class="com.gno.sample.aop.SimpleAopAspectXML"></bean> <!-- aspect: 관점. 걍 aspect에 이용할 클래스로 라고 지정 advice: 어느 시점에 실행 될지 정하는 구분자 (before, after, throw, around) pointcut: 쳐다보고 있는 기준 함수 정의 expression: pointcut 에 입력하는 문법 (<리턴타입> <클래스>.<메소드><(매개변수)>) --> <aop:config> <aop:aspect id="aspect" ref="loggingAspect"> <aop:pointcut expression="execution(* com.gno.sample.dao.CalcDAO.*(..))" id="pointCut"/> <aop:before method="before" pointcut-ref="pointCut"/> <aop:after method="after" pointcut-ref="pointCut"/> </aop:aspect> </aop:config> </beans> | cs |
마지막 부분에 aop:config 라는 설정이 있다.
pointcut은 어느 객체를 횡단간 관심을 주냐는 거다. 이후 특정 메소드에 before,after, after-returning, after-throwing등 설정을 하여 pointcut의 id를 넘겨준다.
그리고 미리 설정해놓은 loggingAspect를 aop:config에 전달한다.
그럼 loggingAspect 소스를 보자.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | package com.gno.sample.aop; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import static org.junit.Assert.fail; import com.gno.sample.service.SimpleCalcService; //@ContextConfiguration(locations={"file:src/main/resources/aop-context.xml"}) @ContextConfiguration(locations={"file:src/main/resources/aop-context_xml.xml"}) @RunWith(SpringJUnit4ClassRunner.class) public class AopTest { @Autowired public SimpleCalcService simpleCalcService; @Test public void test(){ int returnVal = simpleCalcService.add(1, 1); assertThat(returnVal, is(2)); } } | cs |