我正在尝试使用带有MySQL的Hibernate JPA构建一个简单的应用程序,但每当我尝试将其部署到Wildfly时,我都会收到“Missing table”错误。
我的持久化课程如下:
package com.example;
@Entity @Table
public class FooBar {
//...
}
这是我的persistence.xml:
<persistence 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"
version="2.0">
<persistence-unit name="ExampleJPA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>com.example.FooBar</class>
<properties>
<!-- Configuring JDBC properties -->
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/mydatabase" />
<property name="javax.persistence.jdbc.user" value="(my user)" />
<property name="javax.persistence.jdbc.password" value="(my password)" />
<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
<!-- Hibernate properties -->
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
<property name="hibernate.hbm2ddl.auto" value="validate" />
<!-- Configuring Connection Pool -->
<property name="hibernate.c3p0.min_size" value="5" />
<property name="hibernate.c3p0.max_size" value="20" />
<property name="hibernate.c3p0.timeout" value="500" />
<property name="hibernate.c3p0.max_statements" value="50" />
<property name="hibernate.c3p0.idle_test_period" value="2000" />
</properties>
</persistence-unit>
</persistence>
这是我在部署到Wildfly 8服务器时得到的消息:
服务jboss.persistenceunit中的org.jboss.msc.service.StartException。\“ExampleJPA.war#ExampleJPA \”:org.hibernate.HibernateException:缺少表:FooBar 引起:org.hibernate.HibernateException:缺少表:FooBar
我在数据库中有一个名为FooBar的表。我可以使用在persistence.xml中定义的相同url,用户和密码直接使用JDBC访问它。我的JPA设置出了什么问题?
答案 0 :(得分:2)
您的表在架构中不存在,因此“验证”的hibernate.hbm2ddl.auto
值失败。创建表格或将hibernate.hbm2ddl.auto
值更改为“创建”或“更新”。