其他分享
首页 > 其他分享> > 孙卫琴的《精通JPA与Hibernate》的读书笔记:JPA的配置文件

孙卫琴的《精通JPA与Hibernate》的读书笔记:JPA的配置文件

作者:互联网

JPA的配置文件名为persistence.xml,位于classpath根目录的META-INF目录下,它的作用和Hibernate的配置文件hibernate.cfg.xml很相似。以下persistence.xml是本范例的JPA配置文件。

/** 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="myunit">

    <provider>
      org.hibernate.jpa.HibernatePersistenceProvider
    </provider>

    <class>mypack.Customer</class>
   
    <properties>
      <!-- 使用的数据库方言 -->
      <property name="hibernate.dialect"
         value="org.hibernate.dialect.MySQL8Dialect" />
      <!-- 数据库驱动程序-->  
      <property name="javax.persistence.jdbc.driver"
        value="com.mysql.jdbc.Driver" />
      <!--连接数据库的URL-->  
      <property name="javax.persistence.jdbc.url" 
        value="jdbc:mysql://localhost:3306/sampledb?useSSL=false" />
      <!--连接数据库的用户名--> 
      <property name="javax.persistence.jdbc.user" value="root" />
      <!--连接数据库的口令--> 
      <property name="javax.persistence.jdbc.password" value="1234" />
      
      <!-- 运行时在控制台输出Hibernate所执行的SQL语句 -->  
      <property name="hibernate.show_sql" value="true" />

      <!--在启动时删除并重新创建数据库Schema -->
      <property name="hibernate.hbm2ddl.auto" value="create" />

    </properties>
  </persistence-unit>
</persistence>

标签:xml,Hibernate,配置文件,读书笔记,JPA,persistence,属性
来源: https://blog.51cto.com/sunweiqin/2752670