Wildfly 9.0.2 + H2数据库(jdbc:h2:文件未显示表)

时间:2015-11-17 00:33:19

标签: java datasource wildfly h2 wildfly-8

所以,我的第一个使用Wildfly 9.0.2的例子,我已经使用以下设置部署了一个webapp:

上下文: app-estoque-ws-server-wildfly

src/main/resources/META-INF
-> import.sql
-> persistence.xml

WebContent/WEB-INF
-> knight-estoque-ds.xml

的persistence.xml:

<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="        http://java.sun.com/xml/ns/persistence         http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
     <persistence-unit name="primario">
          <jta-data-source>java:jboss/datasources/KnightDS</jta-data-source>
          <properties>
               <property name="hibernate.hbm2ddl.auto" value="create-drop" />
               <property name="hibernate.show_sql" value="true" />
          </properties>
     </persistence-unit>
</persistence>

骑士estoque-ds.xml中:

<datasources xmlns="http://www.jboss.org/ironjacamar/schema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jboss.org/ironjacamar/schema http://docs.jboss.org/ironjacamar/schema/datasources_1_0.xsd">
     <datasource jndi-name="java:jboss/datasources/KnightDS"
      pool-name="knight-datasource" enabled="true"
      use-java-context="true">
          <connection-url>jdbc:h2:file:knight-estoque;DB_CLOSE_ON_EXIT=FALSE</connection-url>
          <driver>h2</driver>
          <security>
               <user-name>sa</user-name>
               <password>sa</password>
          </security>
     </datasource>
</datasources>

这是我在启动日志中获得的:

21:52:31,043 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-6) WFLYJCA0001: Bound data source [java:jboss/datasources/KnightDS]

但我怎样才能完成:

1-在H2网络控制台上访问H2 knight-estoque,我看不到任何已创建或以前导入的表格。

enter image description here

2-此外,我无法在Wildfly日志中看到以前在META-INF文件夹中添加的import.sql的执行。

3-最后,如何在Wildfly Web控制台上找到knight-estoque DS? 尝试了以下路径,但没有找到DS设置:

[RUNTIME] - &gt;独立服务器 - &gt;子系统 - &gt;数据源(仅显示ExampleDS)

[CONFIGURATION] - &gt;子系统 - &gt;数据源 - &gt;非XA - &gt; (仅显示ExampleDS)

[CONFIGURATION] - &gt;子系统 - &gt;数据源 - &gt; XA - &gt;什么都没有

knight-estoque DS设置仅显示在下面的结构上:

enter image description here

我失踪了什么?我只想在DS上执行import.sql,这样我就可以开始使用该应用程序,并使用H2 Web控制台浏览表格。

感谢。

1 个答案:

答案 0 :(得分:2)

import.sql文件需要在src/main/resources/目录中上升一级而不是META-INF目录。