Spring之AOP XML方式

xml方式和Annotation方式差不多,只需改动代理类,和配置文件即可。

[java]  view plain copy
  1. package aspect;  
  2.   
  3. import org.aspectj.lang.annotation.After;  
  4. import org.aspectj.lang.annotation.AfterReturning;  
  5. import org.aspectj.lang.annotation.AfterThrowing;  
  6. import org.aspectj.lang.annotation.Around;  
  7. import org.aspectj.lang.annotation.Aspect;  
  8. import org.aspectj.lang.annotation.Before;  
  9. import org.aspectj.lang.annotation.Pointcut;  
  10.   
  11.   
  12. public class UserDaoAspect {   
  13.   
  14.     public void startSay(){  //告知在xml文件中配置为前置通知  
  15.         System.out.println("Good Morning");  
  16.     }  
  17.     public void endSay(){   //告知在xml文件中配置为后置通知   
  18.         System.out.println("bye bye");  
  19.     }  
  20. }  


applicationContext.xml

 

[html]  view plain copy
  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" xmlns:p="http://www.springframework.org/schema/p"  
  4.   
  5.     xmlns:aop="http://www.springframework.org/schema/aop"  
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  7.     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">  
  8.       
  9.     <bean id="userDao" class="dao.UserDaoImpl" />  
  10.       
  11.     <bean id="aspectj" class="aspect.UserDaoAspect"></bean>  
  12.       
  13.     <aop:config>  
  14.        <aop:aspect id="myaspectj" ref="aspectj">  
  15.           <aop:pointcut expression="execution(* dao..*.*(..))" id="mypointcut"/>  
  16.           <aop:before method="startSay" pointcut-ref="mypointcut"/><!--  前置通知 -->  
  17.           <aop:after method="endSay" pointcut-ref="mypointcut"/> <!-- 后置通知 -->  
  18.        </aop:aspect>  
  19.     </aop:config>  
  20. </beans>  


测试类

[java]  view plain copy
  1. package test;  
  2. import org.springframework.context.ApplicationContext;  
  3. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  4.   
  5. import dao.UserDao;  
  6. import dao.UserDaoImpl;  
  7.   
  8. public class Test {  
  9.   
  10.     /** 
  11.      * @param args 
  12.      */  
  13.     public static void main(String[] args) {  
  14.         // TODO Auto-generated method stub  
  15.         ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");  
  16.         UserDao dao=(UserDao)context.getBean("userDao");  
  17.         dao.addUser();  
  18.     }  
  19.   
  20. }  


两种方式效果是一样的

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值