SpringAOP(5)
2019-03-10 11:57:11来源:博客园 阅读 ()
2019-03-08/14:22:58
演示:登陆核心业务类与日志周边功能实现AOP面向切面思想
jar包:https://share.weiyun.com/5GOFouP
学习资料:http://how2j.cn/k/spring/spring-aop/89.html?p=67889
1.AOP
Spring(1)中有讲过什么是AOP,这里就放一个原理图看一下
1. 功能分两大类,辅助功能和核心业务功能
2. 辅助功能和核心业务功能彼此独立进行开发
3. 比如登陆功能,即便是没有性能统计和日志输出,也可以正常运行
4. 如果有需要,就把"日志输出" 功能和 "登陆" 功能 编织在一起,这样登陆的时候,就可以看到日志输出了
5. 辅助功能,又叫做切面,这种能够选择性的,低耦合的把切面和核心业务功能结合在一起的编程思想,就叫做切面编程
2.准备业务类ProductService
1 package service; 2 3 public class ProductService { 4 5 public void doSomeService(){ 6 7 System.out.println("doSomeService"); 8 9 } 10 11 }
3.引入切面之前调用业务类
1 package test; 2 3 import org.springframework.context.ApplicationContext; 4 import org.springframework.context.support.ClassPathXmlApplicationContext; 5 6 import com.how2java.service.ProductService; 7 8 public class TestSpring { 9 10 public static void main(String[] args) { 11 ApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "applicationContext.xml" }); 12 ProductService s = (ProductService) context.getBean("s"); 13 s.doSomeService(); 14 } 15 }
运行之前需要在配置文件中加一个扫描
1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xmlns:aop="http://www.springframework.org/schema/aop" 5 xmlns:tx="http://www.springframework.org/schema/tx" 6 xmlns:context="http://www.springframework.org/schema/context" 7 xsi:schemaLocation=" 8 http://www.springframework.org/schema/beans 9 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 10 http://www.springframework.org/schema/aop 11 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 12 http://www.springframework.org/schema/tx 13 http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 14 http://www.springframework.org/schema/context 15 http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 16 17 <bean name="s" class="service.ProductService"> //声明业务对象 18 </bean>
运行结果
4.准备日志切面 LoggerAspect
该日志切面的功能是 在调用核心功能之前和之后分别打印日志,切面就是原理图中讲的那些辅助功能。
下面是切面要执行的函数 log,log函数有一个形参 joinPoint 这个可以理解为断点
第8行代码可以理解为就是将来与某个核心功能编织之后,用于执行核心功能的代码
getSignature 获取切点的签名
proceed() 执行切点本来的业务
1 package aspect; 2 import org.aspectj.lang.ProceedingJoinPoint; 3 4 public class LoggerAspect { 5 6 public Object log(ProceedingJoinPoint joinPoint) throws Throwable { 7 System.out.println("start log:" + joinPoint.getSignature().getName()); //开始 8 Object object = joinPoint.proceed(); //监视 9 System.out.println("end log:" + joinPoint.getSignature().getName()); //执行切面,结束 10 return object; 11 } 12 }
5.AOP配置文件详解
17-20行:详情见注释
23-25行: 指定右边的核心业务功能 看原理图的实现
这一句是声明切入点,切入点的 id 叫 loggerCutPoint ,用来标记这个切入点,这个expression表示:满足expression中的方法调用之后,就会去进行切面操作,类似于触发了切面
第一个 * 代表返回任意类型 service.ProductService.* 表示包名以 service.ProductService 开头的类的任意方法(第二个*表示任意方法,通配符的意思)(..) 表示方法的参数是任意数量和类型
简单说就是,只要service这个包中的ProductService类的任意一个函数被调用,不管返回值是什么,都会触发开关,我就会去执行切面,也就是辅助功能,但是辅助功能是什么呢,就是下面两句:
27-29行: 指定左边的辅助功能 看原理图的实现
这两句是定义了一个切面,上面说只要触发开关,就会去执行切面,就是指的这里的切面,所谓切面,就是一个类中的方法...
id代表这个切面的名字,ref就是指的方法所在的类,method代表的就是方法的名字,
pointcut-ref="loggerCutpoint" 这个就是表示这个切面是和上面的切点关联起来的(一个切点是可以关联多个切面的,一个切面只能关联一个方法),只要上面的切点被触发,就会到这里来执行一些辅助功能
after表示在切入点触发之后来执行我这个中断,当然也有before,一共有五个before,after,After-returning ,After-throwing,Around。具体的AOP术语单独用一篇博客细讲一下
在 method 参数后面,还可以加上参数列表。
<aop:config/>:把业务对象与辅助功能编织在一起。
1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xmlns:aop="http://www.springframework.org/schema/aop" 5 xmlns:tx="http://www.springframework.org/schema/tx" 6 xmlns:context="http://www.springframework.org/schema/context" 7 xsi:schemaLocation=" 8 http://www.springframework.org/schema/beans 9 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 10 http://www.springframework.org/schema/aop 11 http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 12 http://www.springframework.org/schema/tx 13 http://www.springframework.org/schema/tx/spring-tx-3.0.xsd 14 http://www.springframework.org/schema/context 15 http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 16 17 <bean name="s" class="service.ProductService"> 18 </bean> //声明业务类 19 20 <bean id="loggerAspect" class="aspect.LoggerAspect"/> //声明日志切面 21 22 <aop:config> 23 <aop:pointcut id="loggerCutpoint" 24 expression= 25 "execution(* service.ProductService.*(..)) "/> 26 27 <aop:aspect id="logAspect" ref="loggerAspect"> 28 <aop:around pointcut-ref="loggerCutpoint" method="log"/> 29 </aop:aspect> 30 </aop:config> 31 32 </beans>
6.测试代码
1 package test; 2 3 import org.springframework.context.ApplicationContext; 4 import org.springframework.context.support.ClassPathXmlApplicationContext; 5 6 import service.ProductService; 7 8 public class TestSpring { 9 10 public static void main(String[] args) { 11 ApplicationContext context = new ClassPathXmlApplicationContext( 12 new String[] { "applicationContext.xml" }); 13 ProductService s = (ProductService) context.getBean("s"); 14 s.doSomeService(); 15 } 16 }
运行测试,可以发现在编织之后,业务方法运行之前和之后分别会打印日志
原文链接:https://www.cnblogs.com/bencoper/p/10498612.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Java自学-多线程 死锁 2020-02-29
- Java连载82-Set、Collection、List、Map的UML演示 2020-02-13
- ReentrantLock(重入锁)功能详解和应用演示 2020-01-28
- SpringAOP在web应用中的使用 2019-12-18
- SpringAOP之使用切入点创建通知 2019-12-04
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash