我在WildFly 10中运行集成测试,当服务器启动时,会有关于H2数据库版本的警告:
HHH000431:无法确定H2数据库版本,某些功能可能无效。
有人能告诉我如何精确测量H2版本吗?感谢。
的persistence.xml
<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.1" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="jsr352" transaction-type="JTA">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>
<class>org.hibernate.search.jsr352.test.entity.Company</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.format_sql" value="false" />
<property name="hibernate.hbm2ddl.auto" value="create-drop" />
<property name="hibernate.search.default.directory_provider" value="ram" />
<property name="hibernate.search.indexing_strategy" value="manual" />
</properties>
</persistence-unit>
</persistence>
WF standalone.xml 配置中的子系统数据源。
<subsystem xmlns="urn:jboss:domain:datasources:4.0">
<datasources>
<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>
<drivers>
<driver name="h2" module="com.h2database.h2">
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
</driver>
</drivers>
</datasources>
</subsystem>
答案 0 :(得分:1)
当我指定使用org.hibernate.dialect.H2Dialect
时实际使用HSQL和驱动程序org.hsqldb.jdbcDriver
时,我遇到了这个问题。更改为使用org.hibernate.dialect.HSQLDialect
后,消息消失了。
对你来说情况并非如此,你似乎使用了H2,所以驱动程序类错了?我希望有类似的东西:
<property name="hibernate.connection.driver_class" value="org.h2.Driver"/>
答案 1 :(得分:0)
使用
.as-console-wrapper { max-height: 100% !important; top: 0; }
在父pom.xml中。