Java框架spring 学习笔记(十二):aop实例操作
使用aop需要在网上下载两个jar包:
- aopalliance.jar
- aspectjweaver.jar
为idea添加jar包,快捷键ctrl+shift+alt+s,打开添加jar包的对话框,将刚才下载好的jar添加进去
前置增强实例
编写TimeHandler.java
package com.example.spring; public class TimeHandler {
public void beforTime()
{
System.out.println("前置增强:CurrentTime = " + System.currentTimeMillis());
}
}
编写HelloWorld.java
package com.example.spring; public class HelloWorld {
public void printHello(){
System.out.println("Hello 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
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd"> <!-- bean definition & AOP specific configuration -->
<!-- 1 配置对象-->
<bean id="helloWorld" class="com.example.spring.HelloWorld"/>
<bean id="timeHandler" class="com.example.spring.TimeHandler"/> <!-- 2 配置aop操作-->
<aop:config>
<!-- 2.1 配置切入点-->
<!-- 设置切入点id为pointcut1 -->
<aop:pointcut id="pointcut1" expression="execution(* com.example.spring.HelloWorld.*(..))"/> <!-- 2.2 配置切面-->
<aop:aspect ref="timeHandler">
<!-- 配置前置增强类型 ,method:增强类()里面的方法(beforTime())作为前置-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<aop:before method="beforTime" pointcut-ref="pointcut1"/>
</aop:aspect>
</aop:config>
</beans>
编写Application.java
package com.example.spring; import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; public class Application {
public static void main(String[] args) {
//bean配置文件所在位置 D:\\IdeaProjects\\spring\\src\\Beans.xml
//使用AbstractApplicationContext容器
AbstractApplicationContext context = new ClassPathXmlApplicationContext("file:D:\\IdeaProjects\\spring\\src\\aop.xml");
//得到配置创建的对象
HelloWorld helloWorld = (HelloWorld)context.getBean("helloWorld");
helloWorld.printHello();
}
}
运行输出
前置增强:CurrentTime = 1510134673408
Hello Aop.
可以看到,打印Hello Aop.之前会先打印当前的时间CurrentTime = 1510132664923。
后置增强实例
修改TimeHandler.java
package com.example.spring; import org.aspectj.lang.ProceedingJoinPoint; public class TimeHandler {
public void beforTime()
{
System.out.println("前置增强:CurrentTime = " + System.currentTimeMillis());
} public void afterTime()
{
System.out.println("后置增强:CurrentTime = " + System.currentTimeMillis());
}
}
修改配置文件aop.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
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd"> <!-- bean definition & AOP specific configuration -->
<!-- 1 配置对象-->
<bean id="helloWorld" class="com.example.spring.HelloWorld"/>
<bean id="timeHandler" class="com.example.spring.TimeHandler"/> <!-- 2 配置aop操作-->
<aop:config>
<!-- 2.1 配置切入点-->
<!-- 设置切入点id为pointcut1 -->
<aop:pointcut id="pointcut1" expression="execution(* com.example.spring.HelloWorld.*(..))"/> <!-- 2.2 配置切面-->
<aop:aspect ref="timeHandler">
<!-- 配置前置增强类型 method:增强类()里面的方法(beforTime())作为前置-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<!--<aop:before method="beforTime" pointcut-ref="pointcut1"/>--> <!-- 配置后置增强类型 method:增强类()里面的方法(afterTime())作为后置-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<aop:after method="afterTime" pointcut-ref="pointcut1"/>
</aop:aspect>
</aop:config>
</beans>
运行输出
Hello Aop.
后置增强:CurrentTime = 1510134850754
环绕增强实例
修改TimeHandler.java
package com.example.spring; import org.aspectj.lang.ProceedingJoinPoint; public class TimeHandler {
public void beforTime()
{
System.out.println("前置增强:CurrentTime = " + System.currentTimeMillis());
} public void afterTime()
{
System.out.println("后置增强:CurrentTime = " + System.currentTimeMillis());
} public void aroundTime(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
//方法之前
System.out.println("环绕增强:CurrentTime = " + System.currentTimeMillis()); //执行被增强的方法
proceedingJoinPoint.proceed(); //方法之后
System.out.println("环绕增强:CurrentTime = " + System.currentTimeMillis());
} }
修改aop.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
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd"> <!-- bean definition & AOP specific configuration -->
<!-- 1 配置对象-->
<bean id="helloWorld" class="com.example.spring.HelloWorld"/>
<bean id="timeHandler" class="com.example.spring.TimeHandler"/> <!-- 2 配置aop操作-->
<aop:config>
<!-- 2.1 配置切入点-->
<!-- 设置切入点id为pointcut1 -->
<aop:pointcut id="pointcut1" expression="execution(* com.example.spring.HelloWorld.*(..))"/> <!-- 2.2 配置切面-->
<aop:aspect ref="timeHandler">
<!-- 配置前置增强类型 method:增强类()里面的方法(beforTime())作为前置通知-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<!--<aop:before method="beforTime" pointcut-ref="pointcut1"/>--> <!-- 配置后置增强类型 method:增强类()里面的方法(afterTime())作为后置通知-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<!--<aop:after method="afterTime" pointcut-ref="pointcut1"/>--> <!-- 配置环绕增强类型 method:增强类()里面的方法(aroundTime())作为环绕通知-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<aop:around method="aroundTime" pointcut-ref="pointcut1"/>
</aop:aspect>
</aop:config>
</beans>
运行输出
环绕增强:CurrentTime = 1510135559066
Hello Aop.
环绕增强:CurrentTime = 1510135559074
之后就不用修改源程序,只需通过调整配置文件,就可以调整程序的逻辑。
修改配置文件
<?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-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd"> <!-- bean definition & AOP specific configuration -->
<!-- 1 配置对象-->
<bean id="helloWorld" class="com.example.spring.HelloWorld"/>
<bean id="timeHandler" class="com.example.spring.TimeHandler"/> <!-- 2 配置aop操作-->
<aop:config>
<!-- 2.1 配置切入点-->
<!-- 设置切入点id为pointcut1 -->
<aop:pointcut id="pointcut1" expression="execution(* com.example.spring.HelloWorld.*(..))"/> <!-- 2.2 配置切面-->
<aop:aspect ref="timeHandler">
<!-- 配置前置增强类型 method:增强类()里面的方法(beforTime())作为前置通知-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<aop:before method="beforTime" pointcut-ref="pointcut1"/> <!-- 配置后置增强类型 method:增强类()里面的方法(afterTime())作为后置通知-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<aop:after method="afterTime" pointcut-ref="pointcut1"/> <!-- 配置环绕增强类型 method:增强类()里面的方法(aroundTime())作为环绕通知-->
<!-- pointcut-ref设置为切入点的id:pointcut1 -->
<aop:around method="aroundTime" pointcut-ref="pointcut1"/>
</aop:aspect>
</aop:config>
</beans>
运行输出
前置增强:CurrentTime = 1510190036105
环绕增强:CurrentTime = 1510190036105
Hello Aop.
环绕增强:CurrentTime = 1510190036122
后置增强:CurrentTime = 1510190036122
Java框架spring 学习笔记(十二):aop实例操作的更多相关文章
- Java框架spring 学习笔记(二):Bean的作用域
Spring 框架Bean支持以下五个作用域: 下面介绍两种作用域,singleton和protoype singleton作用域 singleton作用域为默认作用域,在同一个ioc容器内getBe ...
- Java框架spring 学习笔记(十八):事务管理(xml配置文件管理)
在Java框架spring 学习笔记(十八):事务操作中,有一个问题: package cn.service; import cn.dao.OrderDao; public class OrderSe ...
- Java框架spring 学习笔记(十四):注解aop操作
回见Java框架spring Boot学习笔记(十三):aop实例操作,这里介绍注解aop操作 首先编写一个切入点HelloWorld.java package com.example.spring; ...
- Java框架spring 学习笔记(十):bean管理(注解和配置文件混合使用)
配置文件和注解混合使用 创建对象操作使用配置文件方式实现 注入属性的操作使用注解方式实现 编写BookDao.java和OrderDao.java文件 BookDao.java package com ...
- Spring学习记录(十二)---AOP理解和基于注解配置
Spring核心之二:AOP(Aspect Oriented Programming) --- 面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术.AOP是OOP的延续,是软 ...
- Java框架spring 学习笔记(七):Spring相关概念
Spring是开源.轻量级.一站式框架. Spring核心主要两部分 aop:面向切面编程,扩展功能不是修改源代码实现. ioc:控制反转,把对象的创建交给Spring进行配置,比如一个类,在类里面有 ...
- Spring学习笔记IOC与AOP实例
Spring框架核心由两部分组成: 第一部分是反向控制(IOC),也叫依赖注入(DI); 控制反转(依赖注入)的主要内容是指:只描述程序中对象的被创建方式但不显示的创建对象.在以XML语言描述的配置文 ...
- Java框架spring 学习笔记(十六):c3p0连接池的配置以及dao使用jdbcTemplate
连接池可以大大提高数据库的性能和连接速度,将那些已连接的数据库连接存放在一个连接池里,以后别人要连接数据库的时候,将不会重新建立数据库连接,直接从连接池中取出可用的连接,用户使用完毕后,会释放连接重新 ...
- Java框架spring 学习笔记(十九):事务管理(注解管理)
注解管理的方式要比xml配置方式要简单很多 只需在配置文件中添加事务注解 <?xml version="1.0" encoding="UTF-8"?> ...
随机推荐
- ionic3使用@angular/http 访问nodejs(koa2框架)服务不能返回数据
cordova的http插件不能使用在browser上,所以当需要在browser上浏览时,需要使用@angular/http 里的方法来访问nodejs服务. 如果出现服务端能够接收请求并相应,而客 ...
- C# 6.0:Exception Filter——带条件的异常处理
C#6.0 对异常处理有两处改进,一个是在上一篇文章中我们讨论了的在catch和finally中使用await,另一个是exception filter.在catch和finally中使用await是 ...
- nice team(第一次会议)
在周日经过一番讨论后,nice team成功上线了,四个独特的灵魂聚集在一起,想要一起做一番“大事业”,首先第一篇博客当然就是我们的成员大亮相. 詹晔康:我们组的最强王者,也是我们的项目经理.第一次讨 ...
- 为什么PPIO要设计支付代理节点?
PPIO是我和姚欣发起的去中心化存储项目(https://pp.io),这是为开发者提供的存储和分发网络平台,使得比云存储更廉价,更高速,更隐私. 我在设计PPIO的时候,设计了一个商业角色——支 ...
- [UE4]Grab抓取
一.关键函数:AttachToCompoent,将要抓取的物品附加到角色手上,让物品跟随手移动,开起来就像是抓取在手里了. 二.取消模拟物理.在开启模拟物理的情况下,AttachToCompoent是 ...
- 刘志梅201771010115.《面向对象程序设计(java)》第十六周学习总结
实验十六 线程技术 实验时间 2017-12-8 1.实验目的与要求 (1)当线程的run方法执行方法体中最后一条语句后,并经由执行return语句返回时,或者出现了在方法中没有捕获的异常时,线程将 ...
- 乘法DAC一点知识
在应用电路中发现乘法DAC,以前没有用过所谓的乘法DAC.查过资料发现,其实所有的DAC都可以看作是个“乘法器”-------将输入数字量与基准电压相乘. 一般DAC的输出是VOUT=VREF*D/M ...
- c#经典三层框架中的SqlHelper帮助类
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using ...
- LeetCode 206. Reverse Linked List倒置链表 C++
Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULL Output: 5->4-> ...
- python configparse模块&xml模块
configparse模块 用于生成和修改常见配置文档,当前模块的名称在 python 3.x 版本中变更为 configparser. [DEFAULT] serveraliveinterval = ...