String4笔记----AOP的前置通知和后置通知

Spring的AOP

(1)引入AOP的相关jar包

com.springsource.net.sf.cglib-2.2.0.jar
com.springsource.org.aopalliance-1.0.0.jar
com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
spring-aspects-4.0.0.RELEASE.jar

(2)配置Spring的配置文件

(1)在 Spring 的配置文件中加入 aop 的命名空间。
xmlns:aop="http://www.springframework.org/schema/aop"

(2)基于注解的方式来使用 AOP

<!-- 配置自动扫描的包 -->
<context:component-scan base-package="com.Spring4.AOP"></context:component-scan>
<!-- 使AspjectJ注解起作用:自动为匹配的类生成代理对象 -->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>

为匹配的类自动生成动态代理对象

(3)编写切面类

就是一个一般的 Java 类,在其中添加要额外实现的功能

package com.Spring4.AOP;

import java.util.Arrays;

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

//把类声明为一个切面(1)把该类纳入到IOC容器中,(2)声明为一个切面

@Component   //1)把该类纳入到IOC容器中
@Aspect      //(2)声明为一个切面
public class LoggingAspect
{   //@Before声明该方法是一个前置通知:在目标方法之前执行
	//指定在哪些目标方法之前执行("execution(public int com.spring.aop.ArithmeticCalculator.*(int, int))")
	@Before("execution(public int com.Spring4.AOP.ArithmeticCalculator.*(int, int))")
	public void beforeMethod(JoinPoint joinPoint){
		//JoinPoint
		String methodName = joinPoint.getSignature().getName();
		Object [] args = joinPoint.getArgs();
		
		System.out.println("The method " + methodName + " begins with " + Arrays.asList(args));
	}
	//后置通知
	@After("execution(* com..Spring4.AOP.*.*(..))")
	public void afterMethod(JoinPoint joinPoint){
		String methodName = joinPoint.getSignature().getName();
		System.out.println("The method " + methodName + " ends");
	}
	
}


(4)用注解在切面类中配置切面

类:

(1)将切面纳入IOC容器中 使用:@Component 注解

(2)声明该类时一个切面使用:@Aspect注解

方法

 (1)在beforeMethod方法上声明该方法在目标方法之前执行使用:@Before

 (2)指定在哪个类的哪个方法前执行使用:@Before("execution(public int com.spring.aop.ArithmeticCalculator.*(int, int))")

在通知中访问连接细节:可以在通知方法中添加 JoinPoint类型的参数,从中可以访问到方法的签名和方法的参数

main测试:

package com.Spring4.AOP;

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

public class Main
{
  public static void main(String[] args)
  {
	  //(1)生成IOC容器
	    ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
	   //(2)从IOC容器中得到要使用的bean对象
		ArithmeticCalculator arithmeticCalculator = (ArithmeticCalculator) ctx.getBean("arithmeticCalculator");

		//(3)使用bean对象 在调用add和div方法时,会自动生成
		int result = arithmeticCalculator.add(11, 12);
		System.out.println("result:" + result);
		
		result = arithmeticCalculator.div(21, 3);
		System.out.println("result:" + result);
  }
}
结果:

The method add begins with [11, 12]
The method add ends
result:23
The method div begins with [21, 3]
The method div ends
result:7





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值