问题描述
- 我配置的aop没有起作用
-
<?xml version="1.0" encoding="UTF-8"?>
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-2.0.xsd"><bean id="calculatorImpl" class="com.cjq.spring.aop.impl.CalculatorImpl"> </bean> <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
解决方案
光配置文件是没用的,需要在你的代码上启用相应的标注:
参考:http://chenjumin.iteye.com/blog/456351
时间: 2024-12-03 03:20:55