Spring Aop实例之xml配置

上篇博文《3幅图让你了解Spring AOP》中介绍了aop通知类型,AOP的配置方式有2种方式:xml配置和AspectJ注解方式。今天我们就来实践一下xml配置方式。

http://blog.csdn.net/xiaoxian8023/article/details/17258933

我采用的jdk代理,所以首先将接口和实现类代码附上

[java] view plaincopy

  1. package com.tgb.aop;
  2. public interface UserManager {
  3. public String findUserById(int userId);
  4. }
  5. package com.tgb.aop;
  6. public class UserManagerImpl implements UserManager {
  7. public String findUserById(int userId) {
  8. System.out.println("---------UserManagerImpl.findUserById()--------");
  9. if (userId <= 0) {
  10. throw new IllegalArgumentException("该用户不存在!");
  11. }
  12. return "张三";
  13. }
  14. }

单独写一个Advice通知类进行测试。这个通知类可以换成安全性检测、日志管理等等。

[java] view plaincopy

  1. package com.tgb.aop;
  2. import org.aspectj.lang.JoinPoint;
  3. import org.aspectj.lang.ProceedingJoinPoint;
  4. /**
  5. * Advice通知类
  6. * 测试after,before,around,throwing,returning Advice.
  7. * @author Admin
  8. *
  9. */
  10. public class XMLAdvice {
  11. /**
  12. * 在核心业务执行前执行,不能阻止核心业务的调用。
  13. * @param joinPoint
  14. */
  15. private void doBefore(JoinPoint joinPoint) {
  16. System.out.println("-----doBefore().invoke-----");
  17. System.out.println(" 此处意在执行核心业务逻辑前,做一些安全性的判断等等");
  18. System.out.println(" 可通过joinPoint来获取所需要的内容");
  19. System.out.println("-----End of doBefore()------");
  20. }
  21. /**
  22. * 手动控制调用核心业务逻辑,以及调用前和调用后的处理,
  23. *
  24. * 注意:当核心业务抛异常后,立即退出,转向After Advice
  25. * 执行完毕After Advice,再转到Throwing Advice
  26. * @param pjp
  27. * @return
  28. * @throws Throwable
  29. */
  30. private Object doAround(ProceedingJoinPoint pjp) throws Throwable {
  31. System.out.println("-----doAround().invoke-----");
  32. System.out.println(" 此处可以做类似于Before Advice的事情");
  33. //调用核心逻辑
  34. Object retVal = pjp.proceed();
  35. System.out.println(" 此处可以做类似于After Advice的事情");
  36. System.out.println("-----End of doAround()------");
  37. return retVal;
  38. }
  39. /**
  40. * 核心业务逻辑退出后(包括正常执行结束和异常退出),执行此Advice
  41. * @param joinPoint
  42. */
  43. private void doAfter(JoinPoint joinPoint) {
  44. System.out.println("-----doAfter().invoke-----");
  45. System.out.println(" 此处意在执行核心业务逻辑之后,做一些日志记录操作等等");
  46. System.out.println(" 可通过joinPoint来获取所需要的内容");
  47. System.out.println("-----End of doAfter()------");
  48. }
  49. /**
  50. * 核心业务逻辑调用正常退出后,不管是否有返回值,正常退出后,均执行此Advice
  51. * @param joinPoint
  52. */
  53. private void doReturn(JoinPoint joinPoint) {
  54. System.out.println("-----doReturn().invoke-----");
  55. System.out.println(" 此处可以对返回值做进一步处理");
  56. System.out.println(" 可通过joinPoint来获取所需要的内容");
  57. System.out.println("-----End of doReturn()------");
  58. }
  59. /**
  60. * 核心业务逻辑调用异常退出后,执行此Advice,处理错误信息
  61. * @param joinPoint
  62. * @param ex
  63. */
  64. private void doThrowing(JoinPoint joinPoint,Throwable ex) {
  65. System.out.println("-----doThrowing().invoke-----");
  66. System.out.println(" 错误信息:"+ex.getMessage());
  67. System.out.println(" 此处意在执行核心业务逻辑出错时,捕获异常,并可做一些日志记录操作等等");
  68. System.out.println(" 可通过joinPoint来获取所需要的内容");
  69. System.out.println("-----End of doThrowing()------");
  70. }
  71. }

只有Advice还不行,还需要在application-config.xml中进行配置:

[html] view plaincopy

  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. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
  7. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
  8. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
  9. <bean id="userManager" class="com.tgb.aop.UserManagerImpl"/>
  10. <!--<bean id="aspcejHandler" class="com.tgb.aop.AspceJAdvice"/>-->
  11. <bean id="xmlHandler" class="com.tgb.aop.XMLAdvice" />
  12. <aop:config>
  13. <aop:aspect id="aspect" ref="xmlHandler">
  14. <aop:pointcut id="pointUserMgr" expression="execution(* com.tgb.aop.*.find*(..))"/>
  15. <aop:before method="doBefore"  pointcut-ref="pointUserMgr"/>
  16. <aop:after method="doAfter"  pointcut-ref="pointUserMgr"/>
  17. <aop:around method="doAround"  pointcut-ref="pointUserMgr"/>
  18. <aop:after-returning method="doReturn"  pointcut-ref="pointUserMgr"/>
  19. <aop:after-throwing method="doThrowing" throwing="ex" pointcut-ref="pointUserMgr"/>
  20. </aop:aspect>
  21. </aop:config>
  22. </beans>

编一个客户端类进行测试一下:

[java] view plaincopy

    1. package com.tgb.aop;
    2. import org.springframework.beans.factory.BeanFactory;
    3. import org.springframework.context.support.ClassPathXmlApplicationContext;
    4. public class Client {
    5. public static void main(String[] args) {
    6. BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext.xml");
    7. UserManager userManager = (UserManager)factory.getBean("userManager");
    8. //可以查找张三
    9. userManager.findUserById(1);
    10. System.out.println("=====我==是==分==割==线=====");
    11. try {
    12. // 查不到数据,会抛异常,异常会被AfterThrowingAdvice捕获
    13. userManager.findUserById(0);
    14. } catch (IllegalArgumentException e) {
    15. }
    16. }
    17. }
    18. 结果如图:

值得注意的是Around与Before和After的执行顺序。3者的执行顺序取决于在xml中的配置顺序。图中标记了3块,分别对应Before,Around,After。其中②中包含有③。这是因为aop:after配置到了aop:around的前面,如果2者调换一下位置,这三块就会分开独立显示。如果配置顺序是aop:after  -> aop:around ->aop:before,那么①和③都会包含在②中。这种情况的产生是由于Around的特殊性,它可以做类似于Before和After的操作。当安全性的判断不通过时,可以阻止核心业务逻辑的调用,这是Before做不到的。

使用xml可以对aop进行集中配置。很方便而简单。可以对所有的aop进行配置,当然也可以分开到单独的xml中进行配置。当需求变动时,不用修改代码,只要重新配置aop,就可以完成修改操作。

时间: 2024-12-25 16:32:25

Spring Aop实例之xml配置的相关文章

spring 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/

Spring Aop实例之AspectJ注解配置

http://blog.csdn.net/xiaoxian8023/article/details/17285809 上篇博文<Spring Aop实例之xml配置>中,讲解了xml配置方式,今天来说说AspectJ注解方式去配置spring aop. 依旧采用的jdk代理,接口和实现类代码请参考上篇博文.主要是将Aspect类分享一下: [java] view plaincopy package com.tgb.aop; import org.aspectj.lang.JoinPoint;

Spring装配Bean---使用xml配置

声明Bean Spring配置文件的根元素是<beans>. 在<beans>元素内,你可以放所有的Spring配置信息,包括<bean>元素的声明. 除了Beans命名空间,Spring的核心框架总共自带了10个命名空间配置:  命名空间 用途  aop     为声明切面以及将@AspectJ注解的类代理为Spring切面提供了配置元素  beans     支持声明Bean和装配Bean,是Spring最核心也是最原始的命名空间  context 为配置Sprin

Spring的配置文件ApplicationContext.xml配置头文件解析

Spring的配置文件ApplicationContext.xml配置头文件解析 原创 2016年12月16日 14:22:43 标签: spring配置文件 5446 spring中的applicationContext.xml配置头文件解析 <?xmlversion="1.0"encoding="UTF-8"?> <beansxmlns="http://www.springframework.org/schema/beans"

spring管理SessionFactory中XML配置

1. 综合练习目标 2. 综合练习需求 3.模块划分 1. 综合练习目标 <1>复习 Java 基本语法 <2>熟悉掌握Java开发常用API <3>尝试建立面向对象思想 2. 综合练习需求 <1>接收用户的命令行输入 <2>以文件为基础完成数据的增删改查操作          3.模块划分 UI模块:(Java存在文本中都是以字符型式) 数据验证模块:验证用户输入是否合法 spring管理SessionFactory中XML配置,布布扣,bub

【Spring】AOP之基于XML配置总结与案例

林炳文Evankaka原创作品.转载请注明出处http://blog.csdn.net/evankaka 一.AOP的一些概念 AOP(Aspect-Oriented Programming,面向切面编程),可以说是OOP(Object-Oriented Programing,面向对象编程)的补充和完善.OOP引入封装.继承和多态性等概念来建立一种对象层次结构,用以模拟公共行为的一个集合.当我们需要为分散的对象引入公共行为的时候,OOP则显得无能为力.也就是说,OOP允许你定义从上到下的关系,但

spring事务管理,xml配置aop事务和注解配置aop事务

xml配置和注解配合共同代码 AccountService.java public interface AccountService { //转账方法 void transfer(Integer from,Integer to,Double money); } AccountServiceImpl.java xml配置aop事务的AccountServiceImpl.java public class AccountServiceImpl implements AccountService {

Java Spring AOP的两种配置方式

第一种:注解配置AOP java中注解配置AOP(使用 AspectJ 类库实现的),大致分为三步: 1. 使用注解@Aspect来定义一个切面,在切面中定义切入点(@Pointcut),通知类型(@Before, @AfterReturning,@After,@AfterThrowing,@Around).2. 开发需要被拦截的类.3. 将切面配置到xml中,当然,我们也可以使用自动扫描Bean的方式.这样的话,那就交由Spring AoP容器管理. 另外需要引用 aspectJ 的 jar

尚硅谷Spring整合Hibernate基于xml配置

描述:这是一个最简单网上书城demo. 下载地址:http://download.csdn.net/detail/u013488580/8370899 1. Spring 整合 Hibernate 整合什么 ? 1). 有 IOC 容器来管理 Hibernate 的 SessionFactory 2). 让 Hibernate 使用上 Spring 的声明式事务 2. 整合步骤: 1). 加入 hibernate ①. jar 包 ②. 添加 hibernate 的配置文件: hibernate