Spring框架——AOP前置通知

前置通知( Advice):

在方法调用前自定义操作。比如方法调用时的log记录、计时、登陆验证等。下面以log记录为例说明。

步骤:

1. 定义接口

2. 编写对象(被代理对象=目标对象)

3. 编写通知(前置通知目标方法调用前调用)

4. 在beans.xml文件配置

4.1 配置 被代理对象=目标对象

4.2 配置通知

4.3 配置代理对象 是 ProxyFactoryBean的对象实例

4.3.1 <!-- 代理接口集 -->

4.3.2 织入通知

4.3.3 配置被代理对象


本实例:

1、基本信息:

包名:com.aop

两个接口类:TestServiceInter.java;TestServiceInter2.java

测试类:Test1Service.java实现了上述两个接口

前置通知类:MyMethodBeforeAdvice.java

配置文件:beans.xml

应用操作类:App.java

2、接口类TestServiceInter.java中代码:

<span style="font-size:18px;">package com.aop;
public interface TestServiceInter {
	public void sayHello();
}</span>
3、接口类TestServiceInter2.java中代码:

<span style="font-size:18px;">package com.aop;
public interface TestServiceInter2 {
	public void sayBye();
}</span>
4、测试类Test1Service.java中代码:

<span style="font-size:18px;">package com.aop;

public class Test1Service implements TestServiceInter,TestServiceInter2 {

	private String name;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public void sayHello() {

		System.out.println("Hello!"+name);

	}
	public void sayBye() {
		// TODO Auto-generated method stub
		System.out.println("Bye!"+name);
	}

}</span>
5、前置通知类MyMethodBeforeAdvice.java中代码:

<span style="font-size:18px;">package com.aop;
import java.lang.reflect.Method;
import org.springframework.aop.MethodBeforeAdvice;

public class MyMethodBeforeAdvice implements MethodBeforeAdvice {

	@Override//method:表示被调用的方法,args:给这个方法传递的参数;target:目标对象
	
	public void before(Method method, Object[] args, Object target)
			throws Throwable {
		// TODO Auto-generated method stub
		System.out.println("记录日志..."+method.getName());
	}
}</span>
6、配置文件beans.xml中代码:

<span style="font-size:18px;"><!-- 1、配置被代理的对象,该对象实现了接口 -->
<bean id="test1Service" class="com.aop.Test1Service">
	<property name="name" value="小明"/>
</bean>
<!-- 2、配置前置通知 
	proxyFactoryBean implements TestServiceInter,TestServiceInter2{
		public void sayHello();
	}
-->
<bean id ="myMethodBeforeAdvice" class="com.aop.MyMethodBeforeAdvice" />
<!-- 3、配置代理对象,spring提供 -->
<bean id="proxyFactoryBean1" class="org.springframework.aop.framework.ProxyFactoryBean">
<!-- 3.1、配置代理接口集-->
	<property name="proxyInterfaces">
	<list>
		<value>com.aop.TestServiceInter</value>
		<value>com.aop.TestServiceInter2</value>
	</list>
	</property>
<!-- 3.2、把通知织入到代理对象 -->
<property name="interceptorNames">
	<!-- 相当于把前置通知和代理对象关联起来,可以把通知看成拦截器 -->
	<value>myMethodBeforeAdvice</value>
</property>
<!-- 3.3、配置被代理对象 ,可以指定-->
<property name="target" ref="test1Service"/>
</bean></span>
7、应用操作类App.java中代码:

<span style="font-size:18px;">package com.aop;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class App {

	public static void main(String[] args) {

		ApplicationContext ac=new ClassPathXmlApplicationContext("com/aop/beans.xml");
		TestServiceInter ts=(TestServiceInter)ac.getBean("proxyFactoryBean1");
		TestServiceInter2 ts2=(TestServiceInter2)ts;//转接口
		ts.sayHello();
		ts2.sayBye();
	}
}</span>
8、运行结果:








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Lizhifun

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值