在做sturts与spring整合的时候,action总是找不到对应的serivce实例,提示空指针异常。

在action中用这个方法可以实现功能
2024-12-23 05:01:38
推荐回答(2个)
回答1:

没有认真看,给你两个关键点你看下或者找下,
1,spring的xml加入扫描,扫描哪些些service
如 package="com.*.*"
2, 在ServiceImpl上加上@Service
3, 在Action中要使用的时候加入@Autowire

建议你使用注解

回答2:

因为你的StudentService没有实例化,改法如下:
private StudentService stuservice = new StudentServiceImpl();
public void setStuservice(...){}
public StudentService getStuservice(){}

StudentServiceImpl类为StudentService的实现类