码迷,mamicode.com
首页 > 其他好文 > 详细

AOP的使用

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

标签:coding   schema   src   添加   引入   png   frame   ima   cat   

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的使用

标签:coding   schema   src   添加   引入   png   frame   ima   cat   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!