gpt4 book ai didi

java - Hibernate sessionFactory.openSession() 返回 null

转载 作者:行者123 更新时间:2023-11-28 23:34:03 24 4
gpt4 key购买 nike

我有一个问题,当我在服务器上运行时,我的 sessionFactory.openSession() 返回 null。在本地机器上一切都很好,但我不知道服务器上的问题是什么。 (我什至在关闭 iptables 的情况下尝试过,所以防火墙不是它)

本地:一切正常 --> Win8、Tomcat 7.0.55、MySQL 5.6.20、JavaJDK1.7
服务器:不正常 --> CentOS 6.5、Tomcat 6/7/8、MySql 5.1.73、Java 1.7.0_71

我正在使用 hibernate 和 Struts 2。我现在已经在 Tomcat 6 - 8 上尝试过了,但每次我都会遇到同样的错误......

堆栈跟踪
java.lang.NullPointerException
com.XXX.util.SessionUtil.getSession(SessionUtil.java:15)

session 实用程序:

package com.XXX.util;

import org.apache.struts2.ServletActionContext;
import org.hibernate.Session;
import org.hibernate.SessionFactory;

import com.XXX.listener.HibernateListener;

public class SessionUtil {

public static Session getSession(){
SessionFactory sessionFactory =
(SessionFactory) ServletActionContext.getServletContext()
.getAttribute(HibernateListener.KEY_NAME);
return sessionFactory.openSession();
}
}

为了初始化 Hibernate 工厂,我使用了一个在启动时在 web.xml 中初始化的监听器。

hibernate 监听器:

package com.XXX.listener;

import java.net.URL;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

import org.apache.log4j.Logger;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernateListener implements ServletContextListener{
private static final Logger logger = Logger.getLogger(HibernateListener.class);

private Configuration config;
private SessionFactory factory;
private String path = "/hibernate.cfg.xml";
private static Class clazz = HibernateListener.class;

public static final String KEY_NAME = clazz.getName();


public void contextDestroyed(ServletContextEvent event) {
//
}

public void contextInitialized(ServletContextEvent event) {

try {

URL url = HibernateListener.class.getResource(path);
config = new Configuration().configure(url);
factory = config.buildSessionFactory();

//save the Hibernate session factory into serlvet context
event.getServletContext().setAttribute(KEY_NAME, factory);

} catch (Exception e) {
logger.fatal("HibernateListener!!! Exception!!!", e);
System.out.println(e.getMessage());
}

}
}

和我的 hibernate.cfg.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory >
<property name="hibernate.show_sql">true</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.password">PASSWORD</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/XXX</property>
<property name="hibernate.connection.username">USER</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>

<!-- c3p0 -->
<property name="hibernate.c3p0.min_size">5</property>
<property name="hibernate.c3p0.max_size">100</property>
<property name="hibernate.c3p0.timeout">30</property>
<property name="hibernate.c3p0.max_statements">50</property>
<property name="hibernate.c3p0.idle_test_period">30</property>

<!-- ========== Mappings ========== -->
.
.
.
<!-- ========== /Mappings ========== -->

</session-factory>
</hibernate-configuration>


我的怀疑是
1. SessionUtil 找不到 HibernateListener
2. jar 文件可能有问题。 (我所有的 jar 文件都在 WEBROOT -> WEB-INF -> LIB 文件夹中)


我只是不知道该怎么办...

非常感谢任何帮助!
谢谢大家!

最佳答案

在 struts.xml 中使用 basicStackHibernate 拦截器来访问 Hibernate( session 和/或事务)。

 <interceptor-ref name="defaultStackHibernate" />

也许它会为你用尽

关于java - Hibernate sessionFactory.openSession() 返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26690727/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com