3

我正在使用 Spring Hibernate 开发一个 Web 应用程序。在那里,我在 DAO 类中有一个方法。

当我通过 jsp 文件调用它时,它运行良好。但是当我通过 servlet 调用它时,它会给出一个NullPointerException. 下面我把方法。

@Autowired
private SessionFactory sessionFactory;

@SuppressWarnings("unchecked")
public List<Employee> listEmployees() {

    Session session = sessionFactory.openSession();//line 95
    Criteria crit= session.createCriteria(Employee.class);
    crit.add(Restrictions.eq("EmployeeId",2 ));
    List<Employee> employeelist= crit.list();
    session.close();
    return employeelist;

}

下面是我如何称呼它。

public void getConfirm(HttpServletRequest request, HttpServletResponse response) { 

Logger.getLogger(this.getClass()).warning("Inside Confirm Servlet");  
    response.setContentType("text/html"); 

    // do some works

    EmployeeDao employeeDao=new EmployeeDao();
    employeeDao.listEmployees();         //line 55

    }

这是我的 sessionFactory 配置

<bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="annotatedClasses">
            <list>
                <value>abc.model.Employee</value>
            </list>
        </property>
        <property name="hibernateProperties" >

            <props>
                <prop key="hibernate.dialect">${hibernate.dialect}</prop>
                <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>             
            </props>
        </property>
    </bean>

这是错误

SEVERE: Servlet.service() for servlet [ConfirmServlet] in context with path[/Spring3Hibernate] threw exception
    java.lang.NullPointerException
    at abc.dao.EmployeeDao.listEmployees(EmployeeDao.java:95)
    at abc.mail.ConfirmServlet.getConfirm(ConfirmServlet.java:55)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)

你能告诉我如何解决这个问题,因为我想通过 servlet 调用它。

4

3 回答 3

4

当我通过 jsp 文件调用它时,它运行良好。

它之所以有效,是因为您在 DAO 中定义了此语句:

@Autowired
private SessionFactory sessionFactory;

调用该listEmployees方法的 DAO 实例是 Spring 托管 bean SessionFactory,您在配置文件中定义的 Spring 托管已经注入到您的 DAO bean 中。

但是当我通过 servlet 调用它时,它会给出 NullPointerException

这不起作用:

EmployeeDao employeeDao=new EmployeeDao();
employeeDao.listEmployees();  

因为正在调用的EmployeeDao实例listEmployees不是 Spring 托管 bean。它只是一个新的实例EmployeeDao。所以SessionFactory你在你的实例EmployeeDaonull.

现在,如果你想将 Spring 管理EmployeeDao注入到你的 Servlet 中,你可以通过覆盖 Servlet 的init方法来做到这一点,如下所示:

private EmployeeDao ed;
public void init(ServletConfig config) throws ServletException {
    super.init(config);
    ApplicationContext context = WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext());
    ed = (EmployeeDao) context.getBean("employeeDao");
}

您现在可以为此重写getConfirm方法:

public void getConfirm(HttpServletRequest request, HttpServletResponse response) { 

Logger.getLogger(this.getClass()).warning("Inside Confirm Servlet");  
    response.setContentType("text/html"); 

    // do some works

    //EmployeeDao employeeDao=new EmployeeDao();
    employeeDao.listEmployees();         //line 55

    }

编辑:

将这些条目添加到您的 web.xml 中:

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/your-spring-config-file.xml
    </param-value>
</context-param>
于 2013-11-14T07:47:25.503 回答
0

在第 95 行之前包含以下代码行。假设您尚未创建 SessionFactory 对象

SessionFactory sessionFactory=new Configuration().configure().buildSessionFactory();
Session session=sessionFactory.openSession();
session.beginTransaction();
//Your operation
Session.getTransaction().commit();
于 2013-11-14T06:40:15.603 回答
0

对我来说,映射属性hibernate.cfg.xml指向不正确的模型。

于 2017-01-12T20:00:43.523 回答