IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring-Aop -> 正文阅读

[Java知识库]Spring-Aop

JDK动态代理

Cglib动态代理实现

1、目标
public class Target {
	private static final Logger log = LoggerFactory.getLogger(Target.class);
	
	public void doSomething(){
		log.info("doSomething...");
	}
}
2、增强
public class Advice {
	private static final Logger log = LoggerFactory.getLogger(Advice.class);
	
	public void before(){
		log.info("before...");
	}
	
	public void after(){
		log.info("after...");
	}
}

3、代理实现

public class ProxyGclip {
	
	@Test
	public void test(){
		Target target = new Target();//目标
		Advice advice = new Advice();//增强
		Enhancer enhancer = new Enhancer();//创建增强器
		enhancer.setSuperclass(Target.class);//设置目标
		enhancer.setCallback(new MethodInterceptor() {//设置回调
			
			@Override
			public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
				advice.before();
				Object invoke = method.invoke(target, args);
				advice.after();
				return invoke;
			}
		});
		//创建代理对象
		Target proxy = (Target) enhancer.create();
		proxy.doSomething();
	}
}

JDK动态代理

1、目标:同上,实现了接口
2、增强:同上
3、接口
public interface TargetInterface {
	void doSomething();
}
4、代理实现
public class TargetProxy {

	@Test
	public void test(){
		Target target = new Target();//目标
		Advice advice = new Advice();//增强
		TargetInterface proxy = (TargetInterface) Proxy.newProxyInstance(
				target.getClass().getClassLoader(), //目标对象类加载器
				target.getClass().getInterfaces(), //目标对象相同的接口字节码对象数组
				new InvocationHandler() {
			@Override
			public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
				advice.before();
				Object invoke = method.invoke(target, args);
				advice.after();
				return invoke;
			}
		});
		proxy.doSomething();
			
	}
	
}

对比总结

1、spring优先对接口进行代理(jdk代理),如果代理对象没有实现任何接口,才会对类进行代理(cglib代理)
2、对接口进行代理优于对类进行代理,因为相对来说更加松耦合,对类代理是备用方案
3、标记为final的方法无法进行代理,因为代理对象需要对目标对象的方法进行覆写。final 修饰的方法是无法进行覆写的
4、spring只支持动态代理,所以只支持方法连接点,不支持属性连接点,因为spring认为属性拦截破坏了封装。面向对象的概念是对象自己处理工作,其他对象只能通过方法调用的得到的结果

xml实现动态代理

1、导入maven坐标
<!-- aspectj的织入 -->
	<dependency>
		<groupId>org.aspectj</groupId>
		<artifactId>aspectjweaver</artifactId>
		<version>1.8.13</version>
	</dependency>
2、配置文件
<?xml version="1.0" encoding="UTF-8"?>
<beans 
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
       ">
       
       <!-- 目标 -->
       <bean name="target" class="cn.sp.aop.xml.Target"/>
       <!-- 增强 -->
       <bean name="advice" class="cn.sp.aop.xml.Advice"/>
       <aop:config>
       	<!-- 声明切面(=切点+通知) -->
       	<aop:aspect ref="advice">
       		<!-- 切点 -->
       		<aop:pointcut id="myPointcut" expression="execution(* cn.sp.aop.xml.Target.*(..))" />
       		<!-- 通知 -->
       		<aop:before method="before" pointcut-ref="myPointcut"/>
       		<aop:after method="after" pointcut-ref="myPointcut"/>
       	</aop:aspect>
       </aop:config>   
</beans>
3、代码同上

注解实现动态代理

1、配置xml组件扫描
<?xml version="1.0" encoding="UTF-8"?>
<beans 
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
       ">
       
	<context:component-scan base-package="cn.sp.aop.anno" />
	
	<!-- aop自动代理 -->
	<aop:aspectj-autoproxy></aop:aspectj-autoproxy>       
</beans>
2、目标:同上
3、目标接口:同上
4、增强
@Component
@Aspect
public class MyAspect {
	
	private static final Logger log = LoggerFactory.getLogger(MyAspect.class);
	
	@Before("MyAspect.myPoint()")
	private void before(){
		log.info("before...");
	}
	
	@After("MyAspect.myPoint()")
	private void after(){
		log.info("after...");
	}
	
	@Pointcut("execution(* cn.sp.aop.anno.*.*(..))")
	private void myPoint(){
		
	}
	
}
5、调用
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:test-aop-anno.xml")
public class TestAopAnno {
	
	@Autowired
	private TargetInterface target;
	
	@Test
	public void test(){
		target.doSomething();
	}
}

总结

1、Advice(通知,增强):通知中封装了切面的工作,即需要增强的功能。
前置通知(Before):在目标方法被调用之前调用通知功能
后置通知(After):在目标方法完成之后调用通知,此时不会关心方法的输出是什么
返回通知(After-returning):在目标方法成功执行之后调用通知
异常通知(After-throwing):在目标方法抛出异常后调用通知
环绕通知(Around):通知包裹了被通知的方法,在被通知的方法调用之前和之后执行自定义的行为

2、连接点:指的是可以被增强的所有的点,可以插入切面的点
3、切点:已经增强的连接点
4、织入:将增强的方法织入到连接点的过程,动态代理是运行时织入
5、引入:(Introduction): 添加方法或字段到被通知的类。 Spring允许引入新的接口到任何被通知的对象。例如,你可以使用一个引入使任何对象实现 IsModified接口,来简化缓存。Spring中要使用Introduction, 可有通过DelegatingIntroductionInterceptor来实现通知,通过DefaultIntroductionAdvisor来配置Advice和代理类要实现的接口
5、aop的应用场景:
场景一: 记录日志
场景二: 监控方法运行时间 (监控性能)
场景三: 权限控制
场景四: 缓存优化 (第一次调用查询数据库,将查询结果放入内存对象, 第二次调用, 直接从内存对象返回,不需要查询数据库 )
场景五: 事务管理 (调用方法前开启事务, 调用方法后提交关闭事务 )
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-11-18 11:04:23  更:2021-11-18 11:05:55 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 3:05:07-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码