SpringMVC中配置AOP拦截controller 失效

时间:2022-02-12 11:48:08

来源:http://www.oschina.net/question/222929_124314

目测大部分同学的aop失效都是因为在springmvc的配置文件里面扫描了类,那么spring去扫描的时候发现内存中已经有了对象,就不会在对类进行aop增强。所以当我们确定在那一层切入的时候,那么在springmvc的配置文件中,应该要排除欲切入的层。

<!-- 扫描的时候过滤掉Service层,aop要在service进行切入! -->
<context:component-scan base-package="com.xxx.infoaudit">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
</context:component-scan>