标签:oid iso interface row === 耦合 执行 eth 切面
title: spring06
date: 2020-03-09 19:31:51
tags:该部分记录了AOP
记录了AOP,有方法执行前,方法执行后,方法环绕。
摘自秦老师...
什么是AOP?
AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
AOP在Spring中的作用:
提供声明式事务;允许用户自定义切面
接口(UserService)
package com.nevesettle.service;
public interface UserService {
public void add();
public void delete();
public void update();
public void search();
}
实现类(UserServiceImp)
package com.nevesettle.service;
public class UserServiceImp implements UserService {
public void add() {
System.out.println("执行了ADD方法");
}
public void delete() {
System.out.println("执行了DELETE方法");
}
public void update() {
System.out.println("执行了UPDATE方法");
}
public void search() {
System.out.println("执行了SEARCH方法");
}
}
定义两个需要执行的函数:
方法执行前函数(beforeLog)
package com.nevesettle.log;
import org.springframework.aop.MethodBeforeAdvice;
import java.lang.reflect.Method;
public class BeforeLog implements MethodBeforeAdvice {
//method : 要执行的目标对象的方法
//objects : 被调用的方法的参数
//Object : 目标对象
public void before(Method method, Object[] objects, Object o) throws Throwable {
System.out.println(o.getClass().getName() + "类执行了" + method.getName() + "方法!");
}
}
方法执行后函数(afterLog)
package com.nevesettle.log;
import org.springframework.aop.AfterReturningAdvice;
import java.lang.reflect.Method;
public class AfterLog implements AfterReturningAdvice {
//returnValue 返回值
//method被调用的方法
//args 被调用的方法的对象的参数
//target 被调用的目标对象
public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
System.out.println(method.getName() + "执行后,返回了" + o);
}
}
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 配置bean-->
<bean id="serviceImp" class="com.nevesettle.service.UserServiceImp"/>
<bean id="beforeLog" class="com.nevesettle.log.BeforeLog"/>
<bean id="afterLog" class="com.nevesettle.log.AfterLog"/>
<!--第一种方式,配置AOP-->
<aop:config>
<!-- 切入点,execution是固定的表达式-->
<aop:pointcut id="myPointcut" expression="execution(* com.nevesettle.service.UserServiceImp.*(..))"/>
<!-- 执行环绕-->
<aop:advisor advice-ref="afterLog" pointcut-ref="myPointcut"/>
<aop:advisor advice-ref="beforeLog" pointcut-ref="myPointcut"/>
</aop:config>
</beans>
只需要一个类即可,该类中有要执行的各个方法。
package com.nevesettle.diy;
public class DiyLog {
public void after(){
System.out.println("=======方法执行后=======");
}
public void before(){
System.out.println("=======方法执行前=======");
}
}
然后再在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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 配置bean-->
<bean id="serviceImp" class="com.nevesettle.service.UserServiceImp"/>
<bean id="beforeLog" class="com.nevesettle.log.BeforeLog"/>
<bean id="afterLog" class="com.nevesettle.log.AfterLog"/>
<!-- 第二种方式-->
<bean id="diylog" class="com.nevesettle.diy.DiyLog"/>
<!-- 开始配置AOP-->
<aop:config>
<aop:aspect ref="diylog">
<!-- 切入点-->
<aop:pointcut id="myPointcut" expression="execution(* com.nevesettle.service.UserServiceImp.*(..))"/>
<!-- 通知-->
<aop:after method="after" pointcut-ref="myPointcut"/>
<aop:before method="before" pointcut-ref="myPointcut"/>
</aop:aspect>
</aop:config>
</beans>
标签:oid iso interface row === 耦合 执行 eth 切面
原文地址:https://www.cnblogs.com/wuren-best/p/12450765.html