关机后如何以编程方式重新启动 HSQLDB(文件模式)?
Posted
技术标签:
【中文标题】关机后如何以编程方式重新启动 HSQLDB(文件模式)?【英文标题】:How to restart HSQLDB(file mode) programmatically after the shutdown? 【发布时间】:2016-06-25 07:59:17 【问题描述】:我在我的项目中使用 HSQLDB(文件模式)、Spring 4.2.2、Hibernate 5、JavaFX。
我的数据库以文件模式启动。 数据库.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/jdbc/spring-jdbc.xsd">
<tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true"/>
<beans:bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<beans:property name="driverClassName" value="org.hsqldb.jdbcDriver"/>
<beans:property name="url"
value="jdbc:hsqldb:file:D:/database/statistical_reports;hsqldb.write_delay=true;shutdown=false"/>
<beans:property name="username" value="sa"/>
<beans:property name="password" value=""/>
</beans:bean>
<jdbc:initialize-database data-source="dataSource">
<jdbc:script location="classpath*:database/database_schema.sql"/>
</jdbc:initialize-database>
<beans:bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<beans:property name="dataSource" ref="dataSource"/>
<beans:property name="configLocation" value="hibernate/hibernate.cfg.xml"/>
<beans:property name="annotatedClasses">
<beans:list>
... list of hibernate entities...
</beans:list>
</beans:property>
</beans:bean>
<beans:bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<beans:property name="sessionFactory" ref="sessionFactory"/>
</beans:bean>
</beans:beans>
一切正常,没有任何问题。
但是我需要对数据库脚本文件进行一些操作,并且我必须为我的数据库关闭几秒钟。为此,我正在使用这种方法,它也可以正常工作:
public class HibernateUtilDao extends AbstractDao
public void shutdownServer()
getSession().createSQLQuery("SHUTDOWN").executeUpdate();
...
对于这些操作,database.script 文件必须由主线程释放。但现在我需要以某种方式重新启动我的数据库。
问题: 如何从我的程序重新启动我的数据库?您能否就这个问题给出一些建议或代码示例?**
【问题讨论】:
【参考方案1】:使用file:
数据库,关闭后,您可以简单地创建与数据库的新连接,新连接将自动打开数据库。如果在此之后创建新连接,它们将连接到打开的数据库。
【讨论】:
嗨弗雷特。感谢您对我在 HSQLDB 主题中的问题的所有回答。你能举一些小例子吗...因为我试图在关机后打开连接,但是我遇到了一些异常,原因是:org.hibernate.exception.JDBCConnectionException:无法准备语句,原因是:org。 hsqldb.HsqlException:连接异常:已关闭等不确定我做得对。 我不知道 Hibernate 的详细信息。该消息显示 SessionFactory 正在重用不再工作的现有会话(连接)。您需要在重新启动之前重置工厂,以便创建新会话。 有什么方法可以在不关机的情况下解锁 HSQLDB database.script 文件几秒钟???或者当服务器已经启动时,也许可以将“readonly=false”更改为“readonly=true”? 没有。 .script 文件在启动时只读,因此即使有办法,您的编辑也不会显示。使用 SQL 更改数据库,而不是编辑 .script 文件。以上是关于关机后如何以编程方式重新启动 HSQLDB(文件模式)?的主要内容,如果未能解决你的问题,请参考以下文章