ssh做项目,总是报空指针不能进入userservice,调试,userservice为null,
ssh做项目,总是报空指针不能进入userservice,调试,userservice为null,网上的解法,一种是看是否userservice已经getset,这步做了...
ssh做项目,总是报空指针不能进入userservice,调试,userservice为null,网上的解法,一种是看是否userservice已经getset,这步做了,再一种是把struts配置的action的bean class改为spring的bean id,但是改成spring的bean id,直接跑不动了,报action的classnotfound
展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
2个回答
展开全部
1.service为null的情况一般有几种情况:spring的配置文件没有配置;依赖注入由于写的不仔细而没有实现注入等原因。首先检查是否在spring的配置文件中注入了你想要的service如果有,检查是否因为大小写的小错误而不能实现注入。
2.可以在action的这样处理:
让action继承一个自己编写的BaseAction 在让BaseAction去继承DispatchAction 在BaseAction中实现service的获取
public class BaseAction extends DispatchAction{
protected Object getBean(String id){
WebApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(this.servlet.getServletContext());
return context.getBean(id);
}
}
然后在你的action中就可以直接通过方法得到你想要的service。
IService service = (IService) getBean("你想要的service");
你就可以用service调用你的CRUD方法执行了!
这里主要用到的是spring的DI(依赖注入)spring的核心之一!
2.可以在action的这样处理:
让action继承一个自己编写的BaseAction 在让BaseAction去继承DispatchAction 在BaseAction中实现service的获取
public class BaseAction extends DispatchAction{
protected Object getBean(String id){
WebApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(this.servlet.getServletContext());
return context.getBean(id);
}
}
然后在你的action中就可以直接通过方法得到你想要的service。
IService service = (IService) getBean("你想要的service");
你就可以用service调用你的CRUD方法执行了!
这里主要用到的是spring的DI(依赖注入)spring的核心之一!
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询