|
楼主 |
发表于 2018-7-6 15:39:37
|
显示全部楼层
admin 发表于 2018-7-6 15:02
扫描路径配置了吗
Spring-MVC里面这样配置的:
<context:component-scan base-package="jeecg.*,org.jeecgframework.web.*,zlgl.workflow.*">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
</context:component-scan>
这是公司给的注释:
<!-- 自动扫描controller包下的所有类,使其认为spring mvc的控制器 -->
<!-- 加载controller的时候,不加载service,因为此时事物并未生效,若此时加载了service,那么事物无法对service进行拦截 -->
|
|