首页 > 其他 > 详细

AOP的使用

时间:2019-05-19 00:34:19      阅读:143      评论:0      收藏:0      [点我收藏+]

Spring中AOP使用

  • 1.引入spring基本jar包
  • 2.引入aop开发的相关jar包
  • 3.配置文件中引入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.xsd
                    http://www.springframework.org/schema/aop
                    http://www.springframework.org/schema/aop/spring-aop.xsd">
            
</beans>
  • 4.Spring测试
    测试时,每次都需要获取工厂
    通过spring-test,就不用每次获取
    添加测试依赖包
    技术分享图片

  • 5.测试
    技术分享图片

  • 6.编写一个切面类

  • 7.将切面交给spring

  • 8.配置AOP完成对目标产生代理
    技术分享图片

AOP的使用

原文:https://www.cnblogs.com/wwq123/p/10887689.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!