|
版本:jeecg3.6.6,非maven版本
在spring-mvc.xml 和 spring-mvc-hibernate.xml的配置文件中,重复扫描Dao。
在spring-mvc.xml中已有对dao层的扫描,在spring-mvc-hibernate.xml中也对dao层有扫描,应该排除spring-mvc.xml中的dao
<context:component-scan base-package="org.jeecgframework.web.*,com.jeecg.*,com.buss.*">
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Service" />
<!-- 添加以下一句 -->
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Repository" />
</context:component-scan>
|
|