spring hibernate - dao.save(object)返回空指针异常

时间:2011-06-05 12:13:24

标签: hibernate spring persistence dao

2 个答案:

答案 0 :(得分:2)

Spring没有将PatientDaoImp注入您的控制器。试试这个:

public class PatientController {

  @Autowired
  private PatientDaoImp dao;

还要确保以下声明位于*-servlet.xml上下文文件中(不是主上下文文件):

<context:component-scan base-package="com.pems.web"/>

答案 1 :(得分:1)

另外请添加:

<context:annotation-config/> 

给你*-servlet.xml档案。