我目前遇到了一个有趣的问题。
我的情况:
我的问题:
错误消息:
原因:org.hibernate.exception.GenericJDBCException:无法打开 连接]与根本原因ERROR XSDB6:Derby的另一个实例可能 已经启动了数据库C:\ HTML-Ausgabe \ database \ DocumentDB。 at org.apache.derby.iapi.error.StandardException.newException(未知 来源)......
我对此的想法
似乎在重新加载过程中,hibernate的连接/上下文不会被破坏/关闭,因此当服务器尝试重新连接到数据库时会发生错误
我的代码
我有一个名为Hibernate Listener的类:
public class HibernateListener implements ServletContextListener {
public void contextInitialized(ServletContextEvent event) {
HibernateUtil.getSessionFactory(); // Just call the static initializer of that class
}
public void contextDestroyed(ServletContextEvent event) {
HibernateUtil.getSessionFactory().close(); // Free all resources
}
}
我的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.connection.driver_class">org.apache.derby.jdbc.EmbeddedDriver</property>
<property name="hibernate.connection.url">jdbc:derby:C:\HTML-Ausgabe\database\DocumentDB;create=true</property>
<property name="hibernate.dialect">org.hibernate.dialect.DerbyDialect</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.hbm2ddl.auto">create-drop</property>
<property name="hibernate.show_sql">true</property>
<mapping class="view.model.database.User"/>
<mapping class="view.model.database.Document"/>
<mapping class="view.model.database.Version"/>
<mapping class="view.model.database.VersionData"/>
</session-factory>
</hibernate-configuration>
我的(VAADIN)web.xml,其中我为上面显示的HibernateListener添加了一个“监听器”(检查监听器上的文本):
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Bachelorprojekt</display-name>
<context-param>
<description>Vaadin production mode</description>
<param-name>productionMode</param-name>
<param-value>false</param-value>
</context-param>
<servlet>
<servlet-name>Bachelorprojekt Application</servlet-name>
<servlet-class>com.vaadin.terminal.gwt.server.ApplicationServlet</servlet-class>
<init-param>
<description>Vaadin application class to start</description>
<param-name>application</param-name>
<param-value>view.view.WebsiteFrame</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>Bachelorprojekt Application</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<listener>
<listener-class>view.model.database.HibernateListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
</web-app>
我做了研究,也发布在hibernate论坛上(仍然没有一个答案:(),现在在这个网站上找不到匹配的主题。所以我希望我没有做错事。
如果你们中的任何人能以某种方式帮助我,我会非常高兴。目前我不知道要改变什么来阻止这种错误的发生。当然,如果我更改了一行代码,当我的应用程序在互联网上时,我总是无法重新启动整个服务器。
非常感谢您的每一个回答,并认为您与我分享。
答案 0 :(得分:4)
我找到了解决问题的方法。
首先,这是一个阿帕奇德比问题,因为我强迫它以
结束public void contextDestroyed(ServletContextEvent event) {
HibernateUtil.getSessionFactory().close(); // Free all resources
try {
DriverManager.getConnection("jdbc:derby:;shutdown=true");
} catch (SQLException e) {}
}
}
它对我来说很好。
现在我将我的数据库vom apache derby转换为mysql,并注意到我上面的问题中描述的问题不再发生了。
所以,经验教训:不要使用apache德比。我希望有一天能帮助别人。非常感谢你的帮助。
答案 1 :(得分:2)
快速而肮脏的解决方案:快速而肮脏的临时解决方案可能只是将?restartApplication附加到您的Vaadin应用程序链接的所有位置。
更好的解决方案:我建议在Hibernate中使用session-per-request模式。通过使用Vaadin的事务监听器,您可以轻松确保在每个请求上关闭会话,而不会使用额外的逻辑来污染我们的程序代码。
将这些方法放在主应用程序方法中,然后在init()方法中执行attachVaadinTransactionListener()。链接到下面的详细文章。
private void attachVaadinTransactionListener() {
getContext().addTransactionListener(new TransactionListener() {
public void transactionEnd(Application application,
Object transactionData) {
// Transaction listener gets fired for all (Http) sessions
// of Vaadin applications, checking to be this one.
if (application == EnpApplication.this) {
closeSession();
}
}
public void transactionStart(Application application,
Object transactionData) {
}
});
}
private void closeSession() {
Session sess = HibernateUtil.getSessionFactory().getCurrentSession();
if (sess.getTransaction().isActive()) {
sess.getTransaction().commit();
if(sess.isOpen()) { sess.flush(); }
}
if(sess.isOpen()) {
sess.close();
}
}