Spring AOP示例代码




public interface CustomerDao {
	
	public void save();
	
	public void update();

}

  

public class CustomerDaoImpl implements CustomerDao {

	public void save() {
		// 模拟异常
		// int a = 10/0;	
		System.out.println("保存客户...");
	}
	
	public void update() {
		System.out.println("修改客户...");
	}

}

  

 

import org.aspectj.lang.ProceedingJoinPoint;

/**
 * 切面类:切入点 + 通知
 * @author Administrator
 */
public class MyAspectXml {
	
	/**
	 * 通知(具体的增强)
	 */
	public void log(){
		System.out.println("记录日志...");
	}
	
	
	/**
	 * 最终通知:方法执行成功或者出现异常,都会执行
	 */
	public void before(){
		System.out.println("before通知...");
	}
	/**
	 * 最终通知:方法执行成功或者出现异常,都会执行
	 */
	public void after(){
		System.out.println("after通知...");
	}
	
	/**
	 * 方法执行之后,执行后置通知。程序出现了异常,后置通知不会执行的。
	 */
	public void afterReturn(){
		System.out.println("后置通知...");
	}
	
	/**
	 * 环绕通知:方法执行之前和方法执行之后进行通知,默认的情况下,目标对象的方法不能执行的。需要手动让目标对象的方法执行
	 */
	public void around(ProceedingJoinPoint joinPoint){
		System.out.println("环绕通知1...");
		try {
			// 手动让目标对象的方法去执行
			joinPoint.proceed();
		} catch (Throwable e) {
			e.printStackTrace();
		}
		System.out.println("环绕通知2...");
	}

}

  

 

<?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.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- bean definitions here -->
	
	<!-- 配置客户的dao -->
	<bean id="customerDao" class="com.itheima.demo3.CustomerDaoImpl"/>
	
	<!-- 编写切面类配置好 -->
	<bean id="myAspectXml" class="com.itheima.demo3.MyAspectXml"/>
	
	<!-- 配置AOP -->
	<aop:config>
		<aop:aspect ref="myAspectXml">
			<!-- <aop:before method="log" pointcut="execution(public void com.itheima.demo3.CustomerDaoImpl.save())"/> -->
			
			<!-- 配置最终通知 
			<aop:after method="after" pointcut="execution(public void com.itheima.demo3.CustomerDaoImpl.save())"/>
			-->
			<aop:before method="before" pointcut="execution(public void com.itheima.demo3.CustomerDaoImpl.save())"/>
			<aop:after method="after" pointcut="execution(public void com.itheima.demo3.CustomerDaoImpl.save())"/>
			<!-- <aop:after-returning method="afterReturn" pointcut="execution(public void com.itheima.demo3.CustomerDaoImpl.save())"/> -->
			
			<!-- 环绕通知
			<aop:around method="around" pointcut="execution(public void com.itheima.demo3.CustomerDaoImpl.save())"/> -->
		</aop:aspect>
	</aop:config>
	
</beans>

  

转载于:https://www.cnblogs.com/leodaxin/p/8379862.html

Spring AOP(面向切面编程)是Spring框架中的一个重要模块,它提供了一种在程序运行期间动态地将代码织入到现有代码中的方式。下面是一个简单的Spring AOP代码示例: 先,定义一个接口 `UserService`,其中包含了两个方法 `addUser` 和 `deleteUser`: ```java public interface UserService { void addUser(String username); void deleteUser(String username); } ``` 然后,创建一个实现该接口的类 `UserServiceImpl`: ```java public class UserServiceImpl implements UserService { @Override public void addUser(String username) { System.out.println("添加用户:" + username); } @Override public void deleteUser(String username) { System.out.println("删除用户:" + username); } } ``` 接下来,创建一个切面类 `LogAspect`,用于在方法执行前后打印日志: ```java @Aspect @Component public class LogAspect { @Before("execution(* com.example.UserService.*(..))") public void beforeMethod(JoinPoint joinPoint) { String methodName = joinPoint.getSignature().getName(); Object[] args = joinPoint.getArgs(); System.out.println("调用方法:" + methodName + ",参数:" + Arrays.toString(args)); } @AfterReturning("execution(* com.example.UserService.*(..))") public void afterMethod(JoinPoint joinPoint) { String methodName = joinPoint.getSignature().getName(); System.out.println("方法调用结束:" + methodName); } } ``` 最后,在Spring配置文件中配置相关的bean和切面: ```xml <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.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <bean id="userService" class="com.example.UserServiceImpl"/> <bean id="logAspect" class="com.example.LogAspect"/> <aop:aspectj-autoproxy/> </beans> ``` 以上代码示例中,切面类 `LogAspect` 使用了 `@Aspect` 注解标识为一个切面,并通过 `@Before` 和 `@AfterReturning` 注解定义了前置通知和后置通知的逻辑。在Spring配置文件中,使用 `<aop:aspectj-autoproxy/>` 开启了自动代理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值