没有认真看,给你两个关键点你看下或者找下,
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的实现类