4

我正在尝试在我的应用程序中配置一个嵌入式 tomcat 实例,而无需任何配置文件。

我已经做了一些研究,并基于这个长教程一个较短的教程,我提取了以下步骤:

  1. 创建一个ServletContextListener

    @WebListener //some articles on the web mentioned, that this would add the 
    //Listener automatically to the app context, but i cant believe that this works in my case
    public class HibernateListener implements ServletContextListener {
    
        public void contextInitialized(ServletContextEvent event) {
            HibernateUtil.getSessionFactory(); // create a factory
        }
    
        public void contextDestroyed(ServletContextEvent event) {
            HibernateUtil.getSessionFactory().close(); // free resources
        }
    }
    
  2. 将该侦听器添加到应用程序上下文

    Context rootCtx = tomcat.addContext("", base.getAbsolutePath());
    rootCtx.getServletContext().addListener("com.example.listeners.HibernateListener");
    
    tomcat.start();
    tomcat.getServer().await();
    
  3. HibernateUtil使用必要的配置实现类

    public class HibernateUtil {
    
        private static final SessionFactory sessionFactory;
    
        static {
            try {
                //should i call .configure() on the returned Configuration here?                
                sessionFactory = getConfiguration()
                        .buildSessionFactory();
            } catch (Throwable ex) {
                System.err.println("Initial SessionFactory creation failed." + ex);
                throw new ExceptionInInitializerError(ex);
            }
    
        }
    
        private static Configuration getConfiguration(){
            Configuration c = new Configuration();
    
            c.setProperty("hibernate.connection.url", "jdbc:hsqldb:hsql://localhost:1234/mydb1");
            c.setProperty("hibernate.connection.username", "SA");
            c.setProperty("hibernate.connection.password", "");
            c.setProperty("hibernate.connection.driver_class", "org.hsqldb.jdbcDriver");
    
    
            c.setProperty("dialect", "org.hibernate.dialect.HSQLDialect");
            c.setProperty("cache.provider_class", "org.hibernate.cache.NoCacheProvider");
            c.setProperty("cache.use_query_cache", "false");
            c.setProperty("cache.use_minimal_puts", "false");
            c.setProperty("max_fetch_depth", "3");
    
            c.setProperty("show_sql", "true");
            c.setProperty("format_sql", "true");
            c.setProperty("hbm2ddl.auto", "create");
    
            c.addPackage("com.example.models");
            c.addAnnotatedClass(MyClass.class);
    
            return c;
        }
    
        public static SessionFactory getSessionFactory() {
            return sessionFactory;
        }
    }
    
  4. 现在我应该以某种方式MyClass通过休眠从链接数据库中创建和检索数据,对吗?(现在我不确定,具体如何,但这不是重点)

但不幸的是,NullPointerException当我尝试将侦听器添加到 tomcat 时,我得到了一个

org.apache.catalina.core.ApplicationContextFacade.addListener(ApplicationContextFacade.java:649) 的 org.apache.catalina.core.ApplicationContext.addListener(ApplicationContext.java:1278) 的线程“main”java.lang.NullPointerException 中的异常

指向线rootCtx.getServletContext().addListener("com.example.listeners.HibernateListener");

编辑 1

但是如果我独立运行休眠(没有tomcat)它工作正常。数据保存无误!

HibernateUtil

public static void main(String[] args) {
    MyClass mycls = new MyClass();

    mycls.setMyProperty("My Property");
    Session session = getSessionFactory().openSession();
    Transaction transaction = session.beginTransaction();
    session.save(mycls);
    transaction.commit();
}

所以我认为我配置休眠的方式很好。该错误与添加的侦听器有关...

我在这里做错了什么?

4

2 回答 2

4

在深入挖掘 Tomcat 的源代码后,我找到了一种可能的解决方案:

rootCtx.addApplicationListener(new ApplicationListener("com.example.listeners.HibernateListener", false));

它做了我需要的!

于 2014-01-02T11:49:05.787 回答
0

我认为您在初始化后立即错过了对配置 c 的方法 cinfigure() 的调用。

所以它应该看起来像这样::

 SessionFactory sessionFactory =  getConfiguration().confgure().buildSessionFactory();

或者

c = getConfiguration();
sessionFactory = c.configure().buildSessionFactory();

更新

为了在运行时添加完整的属性,您可以创建一个 Prperties 对象并使用该方法。

  configuration.buildSettings(Properties props)

我不确定,但使用这种方法,hibernate 可能不会在 classpath 中查找 hibernate.cfg.xml 或 .properties 。

更新

您还可以尝试在 getSessionFactory 方法中调用 getConfiguration 方法,而不是在 HibernateUtil 的显式静态初始化程序中调用它

public static getSessionFactory() {
    Configuration c = getConfiguration();
    sessionFactory = c.buildSessionFactory();
    return sessionFactory;
}
于 2014-01-02T00:04:57.690 回答