spring使用动态代理面向切面编程(AOP) annotation

在使用注解的时候,首先得在配置文件bean.xml中添加命名空间:

xmlns:aop="http://www.springframework.org/schema/aop"

 

然后在xsi:schemaLocation中添加:

http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd

 

再次引入:

<aop:aspectj-autoproxy/>

 

bean.xml

<?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:context="http://www.springframework.org/schema/context"
	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.5.xsd
           http://www.springframework.org/schema/context
           http://www.springframework.org/schema/context/spring-context-2.5.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
	
	<context:component-scan base-package="com.test"></context:component-scan>
	<!-- 让spring容器自动生成代理 -->
	<aop:aspectj-autoproxy/>
	
</beans>

 

MyInterceptor.java

package com.test.aop;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class MyInterceptor {
	// 切入点语法
	@Before("execution(public void com.test.dao.impl.UserDAOImpl.save(com.test.model.User))")
	public void beforeMethod() {
		System.out.println("start mothod!");
	}
}

 

另一种写法

MyInterceptor2.java

package com.test.aop;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class MyInterceptor2 {
	/*
	// 表示任何返回类型的com.test.dao以及其子包下的任何方法
	@Before("execution(public * com.test.dao..*.*(..))")
	public void beforeMethod() {
		System.out.println("MyInterceptor2 before mothod!");
	}
	
	@AfterReturning("execution(public * com.test.dao..*.*(..))")
	public void afterReturningMethod() {
		System.out.println("MyInterceptor2 afterReturning mothod!");
	}
	*/
	
	//以上重复编写"execution(public * com.test.dao..*.*(..))",用以下可以进行简化
	
	@Pointcut("execution(public * com.test.dao..*.*(..))")
	public void myMethod(){}
	
	@Before("myMethod()")
	public void beforeMethod() {
		System.out.println("MyInterceptor2 before mothod!");
	}
	
	@AfterReturning("myMethod()")
	public void afterReturningMethod() {
		System.out.println("MyInterceptor2 afterReturning mothod!");
	}
	
	@AfterThrowing("myMethod()")
	public void afterThrowingMethod() {
		System.out.println("MyInterceptor2 afterThrowing mothod!");
	}
	
	@Around("myMethod()")
	public void aroundMethod(ProceedingJoinPoint pjp) throws Throwable {
		System.out.println("MyInterceptor2 around start mothod!");
		pjp.proceed();
		System.out.println("MyInterceptor2 around end mothod!");
	}
	
}

 

往没有实现接口的类的方法做切入点

MyInterceptor3.java

package com.test.aop;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Aspect
@Component
public class MyInterceptor3 {
	// 这里往service里面的方法做切入点,运行会报错,从而产生不了代理,需要引入cglib包
	// 为什么?
	// 原因:service包里面的类没有实现接口,一个类实现了接口,它就会用JDK自带的Proxy和InvocationHandler来帮你产生代理,
	// 若类没有实现接口,它会直接操作二进制码的这种类库,也就是cglib来帮你产生代理,所以这里需要引入cglib包
	@Pointcut("execution(public * com.test.service..*.add(..))")
	public void myMethod(){}
	
	@Before("myMethod()")
	public void beforeMethod() {
		System.out.println("MyInterceptor3 before mothod!");
	}
	
	@AfterReturning("myMethod()")
	public void afterReturningMethod() {
		System.out.println("MyInterceptor3 afterReturning mothod!");
	}
	
	@AfterThrowing("myMethod()")
	public void afterThrowingMethod() {
		System.out.println("MyInterceptor3 afterThrowing mothod!");
	}
	
	@Around("myMethod()")
	public void aroundMethod(ProceedingJoinPoint pjp) throws Throwable {
		System.out.println("MyInterceptor3 around start mothod!");
		pjp.proceed();
		System.out.println("MyInterceptor3 around end mothod!");
	}
	
}

 

其他内容和“springResourceComponent注解”这一节一致

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值