首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

今天在调试spring aop程序时所犯异常总结

2012-11-06 
今天在调试spring aop程序时所犯错误总结今天在调试spring aop程序时,起初认为context:component-scan部分

今天在调试spring aop程序时所犯错误总结
今天在调试spring aop程序时,起初认为context:component-scan部分是扫描@Component,因此其base-page 配置成@Component的包,结果怎么也出不来结果,到spring官方论坛上看到有人求助类似的问题,看到他的配置里面多了一个<bean id="loginAspect" />
    </context:component-scan>和<bean id="loginAspect" name="code"><?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:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd "> <aop:aspectj-autoproxy/> <!--启用spring对@AspectJ风格的切面配置支持,有两种方式,一种是上面的基于xml命名空间的方式,另一种是以bean的方式配置在容器中,如下面所示。 --> <bean /> </context:component-scan><!--切面配置的两种方式,一种是上面的基于xml命名空间的方式,一种是下面这种以bean的方式配置在容器中。 --><bean id="loginAspect" class="com.aabnn.entity.Chinese"/></beans> 1 楼 pyzheng 2011-06-16   谢谢,今天被这个问题折磨死去活来

热点排行