AOP的使用
Posted wwq123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AOP的使用相关的知识,希望对你有一定的参考价值。
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的使用的主要内容,如果未能解决你的问题,请参考以下文章
阿里四面:你知道Spring AOP创建Proxy的过程吗?