Spring 2.0 의 AOP

4260 단어 spring
저 는 Spring 2.0 의 AOP 를 사 용 했 습 니 다.이 는 더욱 간단 하고 강력 한 방식 으로 절단면 을 정의 합 니 다.
바로 시작 합 시다.
먼저 일반 자바 프로젝트 를 만 듭 니 다:com.longthsoft.learn.spring
spring.jar,comons-logging.jar,cglib-nodep-...jar,aspectjweaver.jar,aspectjrt.jar 를  Build Path 아래 에 놓 으 세 요.
lib 를 제외 한 나머지 는 spring 다운로드 패키지 의 lib 에서 찾 을 수 있 습 니 다.
다음 인 코딩 시작:
먼저 두 가지 간단 한 종 류 를 쓰 자.

package com.longthsoft.learn.spring.models;

public class A {
	public void sayHello() {
		System.out.println("Hello, I'm a");
	}
}

package com.longthsoft.learn.spring.models;

public class B {
	public void sayHi() {
		System.out.println("Hi, I'm b");
	}
}


실제 적 인 것 은 없고 A 군 과 B 군 이 인 사 를 하고 있 을 뿐이다.
이제 스프링 에 게 맡 겨 보 자.

<?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"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
	
	<bean id="a" class="com.longthsoft.learn.spring.models.A" />
	<bean id="b" class="com.longthsoft.learn.spring.models.B" />
</beans>

그다음에 Boot 를 쓰 겠 습 니 다.

package com.longthsoft.learn.spring;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.longthsoft.learn.spring.models.A;
import com.longthsoft.learn.spring.models.B;

public final class Boot {

	public static void main(String[] args) {
		ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
		A a = (A) ctx.getBean("a");
		a.sayHello();
		
		B b = (B) ctx.getBean("b");
		b.sayHi();
	}

}

어이,이곳 의 운행 결과 가 좋 지 않 으 니 모두 머 릿 속 을 스 쳐 지나 가면 된다.
크리스마스 가 왔 다.A.B 군 이 자신 을 소개 한 후에 도'메리 크리스마스'라 고 말 해 야 한다.
Spring 은 당신들 이 나 에 게 맡 긴 이상 루틴 은 더 이상 귀 찮 게 하지 않 고 함께 처리 하 겠 다 고 말 했다.
그래서:


package com.longthsoft.learn.spring;

import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;

@Aspect
public class SimpleAspect {

	@Pointcut("execution(* com.longthsoft.learn.spring.models.*.say*())")
	public void simplePointcut() { }
	
	@AfterReturning(pointcut="simplePointcut()")
	public void simpleAdvice() {
		System.out.println("Merry Christmas");
	}
}

그리고 프로필 을 수정 해 주세요.

<?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"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
	
	<aop:aspectj-autoproxy />
	
	<bean id="a" class="com.longthsoft.learn.spring.models.A" />
	<bean id="b" class="com.longthsoft.learn.spring.models.B" />
	
	<bean id="simpleAspect" class="com.longthsoft.learn.spring.SimpleAspect" />
</beans>

OK,실행:
Hello, I'm a
Merry Christmas
Hi, I'm b
Merry Christmas

좋은 웹페이지 즐겨찾기