Spring 2.0 의 AOP
4260 단어 spring
바로 시작 합 시다.
먼저 일반 자바 프로젝트 를 만 듭 니 다: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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
thymeleaf로 HTML 페이지를 동적으로 만듭니다 (spring + gradle)지난번에는 에서 화면에 HTML을 표시했습니다. 이번에는 화면을 동적으로 움직여보고 싶기 때문에 입력한 문자를 화면에 표시시키고 싶습니다. 초보자의 비망록이므로 이상한 점 등 있으면 지적 받을 수 있으면 기쁩니다! ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.