2个回答
展开全部
没有认真看,给你两个关键点你看下或者找下,
1,spring的xml加入扫描,扫描哪些些service
如 package="com.*.*"
2, 在ServiceImpl上加上@Service
3, 在Action中要使用的时候加入@Autowire
建议你使用注解
1,spring的xml加入扫描,扫描哪些些service
如 package="com.*.*"
2, 在ServiceImpl上加上@Service
3, 在Action中要使用的时候加入@Autowire
建议你使用注解
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
因为你的StudentService没有实例化,改法如下:
private StudentService stuservice = new StudentServiceImpl();
public void setStuservice(...){}
public StudentService getStuservice(){}
StudentServiceImpl类为StudentService的实现类
private StudentService stuservice = new StudentServiceImpl();
public void setStuservice(...){}
public StudentService getStuservice(){}
StudentServiceImpl类为StudentService的实现类
追问
StudentService应该通过spring用setStuservice(...){}
自动注入进去了。不应该在actioin内再实例化了。如果要在action里面自己实例化的话,那还要spring做什么?
追答
哦,看错了!是这样的,你吧stuservice放在stuAction中了,但stuAction并没有注入到StudentAction类中,所以相当于stuservice并没有注入进去。
你可以这样改:直接改xml配置文件
把stuAction 这个bean去掉
<bean id='stuservice" class= "service.impl.StudentserviceImpl">
<property></property>
<bean>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询