database - 使用h2数据库时看不到内容 "in-memory"

标签 database spring hibernate h2

我目前正在开发一个 spring mvc 应用程序,其中我的域模型由 hibernate 映射到 h2 数据库(4)。我当前的问题是,当我将 h2 Web 服务器作为 bean 启动时(请参阅下面的上下文),当通过数据源的 jdbcUrl 创建“内存中”数据库时,我无法看到数据库。将 jdbcUrl 设置为文件,然后通过 Web 控制台访问它 -> 一切正常!

一句话...

通过网络控制台访问内存中的 h2,即“jdbc:h2:mem:myapp”不起作用。

通过“jdbc:h2:file:/tmp/myapp”访问它效果很好。

请注意,问题不在于通过 hibernate 等保存条目...我只是没有通过 h2 的 Web 控制台看到内存数据库。我还尝试启动一个 TCP 服务器,如本线程 ( link ) 中提到的那样,但它没有解决我的问题。

有什么想法吗?

这是我的 servlet-context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        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-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <context:annotation-config />

    <context:component-scan base-package="org.wt.myapp" />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

<!--    Database   -->

    <beans:bean id="h2console" class="org.h2.tools.Server"
        lazy-init="false" factory-method="createWebServer" init-method="start" >
        <beans:constructor-arg value="-web,-webAllowOthers,-webPort,8082" />
    </beans:bean>

    <beans:bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <beans:property name="username" value="" />
        <beans:property name="password" value="" />
        <beans:property name="driverClassName" value="org.h2.Driver" />
        <beans:property name="url" value="jdbc:h2:mem:myapp" />
    </beans:bean>

    <beans:bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
       <beans:property name="dataSource" ref="dataSource" />
       <beans:property name="packagesToScan" value="org.wt.myapp.db.domain" />
       <beans:property name="hibernateProperties">
           <beans:props>
               <beans:prop key="hibernate.dialect">org.hibernate.dialect.H2Dialect</beans:prop>
               <beans:prop key="hibernate.show_sql">true</beans:prop>
               <beans:prop key="hibernate.hbm2ddl.auto">create-drop</beans:prop>
           </beans:props>
       </beans:property>
    </beans:bean>

    <beans:bean id="transactionManager" 
               class="org.springframework.orm.hibernate4.HibernateTransactionManager" >
       <beans:property name="sessionFactory" ref="sessionFactory" />
    </beans:bean>

    <tx:annotation-driven/>

</beans:beans>

最佳答案

深入研究 h2 文档,我发现了缺少的内容:

使用内存数据库时,默认行为是在最后一个连接关闭后它会自动关闭。我的另一个应用程序(其中控制台几乎开箱即用)使用了 c3p0 连接池,它始终保持一些连接打开 -> 这种行为永远不会发生。

在问题(和我当前的应用程序)中,有一个 DriverManagerDataSource 它不会始终保持连接打开...因此,当 hibernate 准备好并完成创建架构时,数据库将关闭。

要防止这种行为,您只需在 jdbcUrl 末尾添加 DB_CLOSE_DELAY=-1 即可。这样,只要 jvm 运行,数据库就会保持运行。

我的 jdbcUrl 现在看起来像

jdbc:h2:mem:myapp;DB_CLOSE_DELAY=-1

对于那些对文档感兴趣的人,请参阅 h2 docs

希望我能帮助别人。

关于database - 使用h2数据库时看不到内容 "in-memory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20199871/

相关文章:

java - 使用Spring boot渲染jsp页面出错?

java - 如何使用 Hibernate 将多个多对一关系映射到同一个表和同一个键?

java - Hibernate 二级缓存——程序不终止

c# - EF即使附加了父级也插入重复行

mysql - 最新的 Mysql 和 Postgres 会自动准备每个查询吗?

database - 哈希全外连接如何工作?

java - Hibernate 的 persist() 方法

mysql - 什么在表上运行优化会产生如此巨大的差异?

java - 带注释的 bean 配置看不到 XML 配置中的 bean

java - Spring JUnit 测试未正确重用 ApplicationContext