1.AOP
在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。链接: 百度百科.
2. AOP 动态代理底层实现:
//代理类
public class ProxyInvocationHandler implements InvocationHandler
{
//需要被代理的接口
private Object target;
public void setTarget(Object target)
{
this.target = target;
}
//生成得到的类
public Object getProxy()
{
return Proxy.newProxyInstance(this.getClass().getClassLoader(), target.getClass().getInterfaces(), this);
}
//处理代理实例,并返回结果
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
//动态代理本质是反射
Object result = method.invoke(target, args);
return result;
}
}
public class Client
{
public static void main(String[] args)
{
//真实角色
User user=new User();
//代理角色
ProxyInvocationHandler pih=new ProxyInvocationHandler();
pih.setTarget(user);
//动态生成代理类
UserService proxy= (UserService) pih.getProxy();
//UserService 接口中的方法
proxy.add();
}
}
AOP 动态代理包实现动态代理:
<?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="userService" class="com.sky.UserServiceImpl"/>
<bean id="log" class="com.sky.Log"/>
<bean id="after" class="com.sky.AfterLog"/>
<!--方式一:原生Spring API接口-->
<!--配置aop:需要导入aop约束-->
<!-- <aop:config>-->
<!-- 切入点 expression:表达式execution()要执行的位置 -->
<!-- <aop:pointcut id="pointcut" expression="execution(* com.sky.UserServiceImpl.*(..))"/>-->
<!-- 执行环绕增加-->
<!-- <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>-->
<!-- <aop:advisor advice-ref="after" pointcut-ref="pointcut"/>-->
<!-- </aop:config>-->
<!-- 方式二: 自定义类 -->
<!-- <bean id="div" class="com.sky.diy.DiyPointCUt"/>-->
<!-- <aop:config>-->
<!-- 自定义切面-->
<!-- <aop:aspect ref="div">-->
<!-- 切入点-->
<!-- <aop:pointcut id="point" expression="execution(* com.sky.UserServiceImpl.*(..))"/>-->
<!-- 通知-->
<!-- method 与自定义类方法名相同-->
<!-- <aop:before method="before" pointcut-ref="point"/>-->
<!-- <aop:after method="after" pointcut-ref="point"/>-->
<!-- </aop:aspect>-->
<!-- </aop:config>-->
<!--方式三:注解方式,实现AOP-->
<bean id="annotationPointCut" class="com.sky.diy.AnnotationPointCut"/>
<!-- 开启注解支持 JDK(默认) -->
<aop:aspectj-autoproxy/>
</beans>
业务类
public class UserServiceImpl implements UserService
{
@Override
public void add(){System.out.println("增加了一个用户");}
@Override
public void delete(){System.out.println("删除了一个用户");}
@Override
public void update(){ System.out.println("修改了一个用户");}
@Override
public void query(){System.out.println("查找了一个用户");}
}
方式一:原生Spring API接口 实现类
public class Log implements MethodBeforeAdvice
{
//method 要执行的目标对象的方法
//args 参数
//target 目标对象
@Override
public void before(Method method, Object[] args, Object target) throws Throwable
{
System.out.println(method.getClass().getName()+"的"+method.getName()+"被执行了");
}
}
public class AfterLog implements AfterReturningAdvice
{
//returnValue 返回值
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable
{
System.out.println("执行了"+method.getName()+"返回结果为"+returnValue);
}
}
方式二:自定义类 实现类与方式一相同
public class DiyPointCUt
{
public void before(){System.out.println("方法执行前");}
public void after(){ System.out.println("方法执行后");}
}
方式三:注解方式,实现AOP
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
/**
*方式三:注解方式,实现AOP
*/
@Aspect
public class AnnotationPointCut
{
@Before("execution(* com.sky.UserServiceImpl.*(..))")
public void before(){System.out.println("---------方法执行前--------");}
@After("execution(* com.sky.UserServiceImpl.*(..))")
public void after(){System.out.println("----------方法执行后--------");}
//在环绕增强中,给定一个参数,代表获取处理的切入点
@Around("execution(* com.sky.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable
{
System.out.println("环绕前");
//执行方法
Object proceed=jp.proceed();
System.out.println("环绕后");
}
}
测试:
ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContext.xml");
//动态代理代理的是接口
UserService userService = context.getBean("userService", UserService.class);
userService.add();