基于XML的Spring AOP实现demo

接上篇基于注解的demo, 相关AOP的介绍就不复述了,详情可以点击下方链接,http://www.jianshu.com/p/66d21dae6a68

  • 运行环境 : 在之前写的环境中http://www.jianshu.com/p/dc9ac263e60d

  • 将上篇中的AspectjLog的注解都去掉,其他不变

  • 在my-spring-servlet.xml中,加入aop相关的命名空间.

xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.1.xsd"
  • 在my-spring-servlet.xml中加入切点相关的定义
    
    

    
    
        
            
            
            
            
            
            
        
    

你可能感兴趣的:(基于XML的Spring AOP实现demo)