Wilfdly没有在persistence.xml中获取mysql hibernate配置

时间:2017-02-08 20:19:54

标签: mysql hibernate wildfly persistence.xml

我很难让Wildfly使用MySQL作为数据库,没有连接。我在persistence.xml文件中有以下内容:

<persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
    <persistence-unit name="primary">
        <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
        <properties>
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" />
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/X" />
            <property name="javax.persistence.jdbc.user" value="X" />
            <property name="javax.persistence.jdbc.password" value="X" />
            <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />

            <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
            <property name="hibernate.show_sql" value="true"/>
        </properties>
    </persistence-unit>
</persistence>

更改例如方言显示在日志文件中,更改持久性单元名称也会影响应用程序,因此除了mysql部分之外,还会选择persistence.xml。

任何帮助表示赞赏,

- 米歇尔

0 个答案:

没有答案