spring注解的service在springmvc的controller里面无法注入
spring有一个配置,里面包含service等,用的注解,然后和springmvc一起使用,spring的配置由ContextLoaderListener加载,spri...
spring有一个配置,里面包含service等,用的注解,然后和springmvc一起使用,spring的配置由ContextLoaderListener加载,springmvc的配置由servlet加载,
springmvc的controller,进行注入service的时候,说没有这个bean。
debug看了WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());,的确是没有service的bean,但是单独加载spring配置的时候,是有service的bean的。
代码片段:
service部分
@Service("billService")
public class BillRecordServiceImpl implements BillRecordService {
spring的配置(其他省略)
<context:annotation-config />
<context:component-scan base-package="com.lp.service" />
controller部分
@Controller("BillRecordController")
public class BillRecordController {
@Resource(name="billService")
private BillRecordService billService; //这里,tomcat启动的时候报没有billService的bean
mvc配置
<context:annotation-config />
<context:component-scan base-package="com.lp.bill.controller" />
<mvc:annotation-driven />
哪位帮忙看看是什么原因导致的呢? 不胜感谢。 展开
springmvc的controller,进行注入service的时候,说没有这个bean。
debug看了WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());,的确是没有service的bean,但是单独加载spring配置的时候,是有service的bean的。
代码片段:
service部分
@Service("billService")
public class BillRecordServiceImpl implements BillRecordService {
spring的配置(其他省略)
<context:annotation-config />
<context:component-scan base-package="com.lp.service" />
controller部分
@Controller("BillRecordController")
public class BillRecordController {
@Resource(name="billService")
private BillRecordService billService; //这里,tomcat启动的时候报没有billService的bean
mvc配置
<context:annotation-config />
<context:component-scan base-package="com.lp.bill.controller" />
<mvc:annotation-driven />
哪位帮忙看看是什么原因导致的呢? 不胜感谢。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询