yan888nn 发表于 2017-3-22 17:23:30

yan888nn.5.关于jeeg配置文件的解读,Dao重复扫描的问题

版本: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>
页: [1]
查看完整版本: yan888nn.5.关于jeeg配置文件的解读,Dao重复扫描的问题