spring AOP爲何配置了沒有效果?

 spring Aop的配置必定要配置在springmvc配置文件中
 
 
 
 
springMVC.xml

1
<!-- AOP 註解方式 ;定義Aspect --> 2 <!-- 激活組件掃描功能,在包com.ly.aop.aspect及其子包下面自動掃描經過註解配置的組件--> 3 <context:component-scan base-package="com.relaxPalace.web.aop.aspect"/> 4 <!-- 啓動AspectJ支持 只對掃描過的bean有效--> 5 <aop:aspectj-autoproxy proxy-target-class="true" />

 

 

注意:spring AOP的配置必定要寫在springmvc配置文件中,直接在spring中配置是沒有效果的web

相關文章
相關標籤/搜索