admin 发表于 2015-6-3 13:34

spring中AOP来拦截Action配置

做项目的时候,由于要用到在Struts2的Action类中利用Spring的AOP来实现记录操作日志,

在Action里面的方法中加上自定义annotation来实现记录操作功能,

运行的时候页面提示NoSuchMethodException when Aspec,

网上说是Action继承了ActionSupport导致的,

后来在一个英文网站上找到了解决的方法,

只要在Spring的配置文件applicationContext中的<aop:aspectj-autoproxy/>改为<aop:aspectj-autoproxy proxy-target-class="true"/>就可以了。



第一步:

在struts2的配置文件里加上以下一句:

//让struts2始终先考虑spring的自动装箱
<constant name="struts.objectFactory.spring.autoWire.alwaysRespect" value="true" />



第二步:

在配置AOP时,加上
<!--通知spring使用cglib而不是jdk的来生成代理方法 AOP可以拦截到Controller(Action)-->
<aop:aspectj-autoproxy proxy-target-class="true"/>//关键是这句话,配置上就行了,

页: [1]
查看完整版本: spring中AOP来拦截Action配置