在JBoss EAP 6.2中查看H2内存数据库的内容

时间:2015-04-22 09:03:36

标签: database web jboss h2 jboss-eap-6

我的web应用程序在jboss eap 6.2上运行,并将数据存储到h2 im-memory数据库。

这是jboss的standalone.xml中的数据源配置:

        <datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true">
            <connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE</connection-url>
            <driver>h2</driver>
            <security>
                <user-name>sa</user-name>
                <password>sa</password>
            </security>
        </datasource>

当我使用H2数据库引擎(http://www.h2database.com/html/download.html)访问我的数据库但我找不到我的表时,它只有INFORMATION_SCHEMA和默认表。

那么如何查看数据库的内容呢?

p / s:我使用带有原型

的maven创建了web项目
mvn archetype:generate -DarchetypeGroupId=org.jboss.aerogear.archetypes -DarchetypeArtifactId=jboss-html5-mobile-archetype -DarchetypeVersion=7.1.3.CR6 -Denterprise=true

谢谢!

0 个答案:

没有答案