配置文件注释错误
在spring-mvc.xml中有如下注释:<!-- 加载controller的时候,不加载service,因为此时事物并未生效,若此时加载了service,那么事物无法对service进行拦截 --><context:component-scan base-package="org.jeecgframework.web.*,com.jeecg.*">
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Service"/>
</context:component-scan>
这里不扫描Service的原因是因为在mvc中没有配置事务,如果再次扫描Service的话会controller后调用子容器中的service,子容器中的service没有事务,不是因为事务没有生效。
spring-mvc.xml被扫描了两次
页:
[1]