springDataJpa的配置文件persistence.xml

Posted wlzlpl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springDataJpa的配置文件persistence.xml相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="2.0">
    <!--配置persistence-unit节点
        持久化单元
                name:持久化单元名称
                transection-type:事务管理方式
                                    JTA:分布式事务管理(多个数据库)
                                    RESOURCE_LOCAL 本地事务管理(一个数据库)-->
    <persistence-unit name="myjpa" transaction-type="RESOURCE_LOCAL">
        <!--jpA实现方式HibernatePersistenceProvider-->
        <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
        <!--数据库信息-->
        <properties>
            <property name="javax.persistence.jdbc.user" value="root"/>
            <property name="javax.persistence.jdbc.password" value="root"/>
            <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
            <property name="javax.persistence.jdbc.url" value="jdbc:mysql:///ww9501"/>


        <!--可选配置:配置jpa实现方式的配置
        显示SQL
        自动创建数据库表:
                    create创建数据表如果有表先删后建
                    update  创建表如果有表不创建表
                    none 不创建表-->
            <property name="hibernate.show_sql" value="true"/>
            <property name="hibernate.hb,2ddl.auto" value="create"/>
        </properties>

    </persistence-unit>
</persistence>

  

以上是关于springDataJpa的配置文件persistence.xml的主要内容,如果未能解决你的问题,请参考以下文章

SpringDataJPA 多对多的查询

JPA的配置文件persistence.xml参数详解

不在JPA 的 persistence.xml 文件中配置Entity class的解决办法

如何使用Spring Data JPA搜索非唯一索引?

如何通过 database.properties 文件使数据库配置可配置的 persistence.xml 文件

不在JPA 的 persistence.xml 文件里配置Entity class的解决的方法