Spring采用配置文件方式实现AOP

1.创建一个java项目,并加入Spring的依赖库
引用

* SPRING_HOME/dist/spring.jar
* SPRING_HOME/lib/jakarta-commons/commons-logging.jar
* SPRING_HOME/lib/log4j/log4j-1.2.15.jar
* SPRING_HOME/lib/aspectj/*.jar


注:如果不需要AOP只需要前三种JAR包。

2.目标对象实现的接口
package com.yx.zzg;

public interface UserManage {
	public void add(String username, String password);

	public void update(int id);

	public void delete(int id);

	public String modify(int id);

}


3.目标对象
package com.yx.zzg;

public class UserManageImpl implements UserManage {

	public void add(String username, String password) {
		System.out.println("-------add--------------");
	}
	public void delete(int id) {
		System.out.println("-------delete--------------");
	}
	public String modify(int id) {
		System.out.println("-------modify--------------");
		return null;
	}
	public void update(int id) {
		System.out.println("----------update--------------");
	}
}


4.定义切面类
package com.yx.zzg;

public class SecurityHandler {
        //安全性检查
	private void checkSecurity() {
		System.out.println("----------checkSecurity()----------");
	}
}


5.在项目的src目录下新建一个applicationContext.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:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xsi:schemaLocation="
			http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
			http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

	<!-- 将Aspect类配置到IOC容器中 -->
	<bean id="securityHandler" class="com.yx.zzg.SecurityHandler" />
	<!-- 将目标对象配置到IOC容器中 -->
	<bean id="userManage" class="com.yx.zzg.UserManageImpl" />
   <!-- 配置AOP -->
	<aop:config>
	<!-- 定义一个切面,并指定切面类,该切面类包含一个Pointcut和一个Advice -->
		<aop:aspect id="security" ref="securityHandler">
			<!-- 定义Pointcut -->
			<aop:pointcut id="allAddMethod"
				expression="execution(* com.yx.zzg.UserManageImpl.add*(..))" />
			<!-- 定义Advice,并制定应用到哪个Pointcut上 -->
			<aop:before method="checkSecurity" pointcut-ref="allAddMethod"/>
		</aop:aspect>
	</aop:config>
</beans>


6.客户端调用
package com.yx.zzg;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Client {
	public static void main(String[] args) {
		BeanFactory factory=new ClassPathXmlApplicationContext("applicationContext.xml");
		UserManage userManage=(UserManage)factory.getBean("userManage");
		userManage.add("aaa", "aaa");
		//userManage.delete(1);
	}
}

注:Aspect(切面类)默认情况下不用实现接口,但目标对象(UserManageImpl.java)在默认情况下必须实现接口,如果没有实现接口则必须引入CGLIB库。
另:我们可以通过Advice中添加一个JoinPoint参数,这个值会由spring自动传入,从JoinPoint中可以取得参数值、方法名等。
如:
package com.yx.zzg;

import org.aspectj.lang.JoinPoint;

public class SecurityHandler {

	private void checkSecurity(JoinPoint joinPoint) {
		//获取方法参数
		Object[] args = joinPoint.getArgs();
		for (int i = 0; i < args.length; i++) {
			System.out.println(args[i]);
		}
		//获取方法名
		System.out.println(joinPoint.getSignature().getName());
		System.out.println("----------checkSecurity()----------");
	}
}

你可能感兴趣的:(java,spring,AOP,log4j,IOC)