Spring ORM - 持久化 Hibernate


persistence.xml 定义了与 hibernate 相关的各个方面,如下所示。

  • 持久性单元- 包含所有详细信息的持久性单元。它的名称用于在 spring 上下文中获取引用。

  • 提供者- org.hibernate.jpa.HibernatePersistenceProvider 类将用作提供者。

  • 数据库 url 和凭据- 在属性部分中,我们传递数据库相关值。

  • show_sql - 显示生成的 sql 查询

  • hbm2ddl - 允许 hibernate 创建表。

在 src -> main > resources > META-INF 文件夹中创建 persistence.xml。

持久性.xml

<persistence 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" version="2.1">

   <persistence-unit name="Hibernate_JPA">
   <description> Spring Hibernate JPA Configuration Example</description>
   <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
   <properties>
      <property name="javax.persistence.jdbc.driver" value="com.mysql.cj.jdbc.Driver" />
      <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/tutorialspoint?useSSL=false" />
      <property name="javax.persistence.jdbc.user" value="root" />
      <property name="javax.persistence.jdbc.password" value="root@123" />
      <property name="hibernate.show_sql" value="true" />
      <property name="hibernate.hbm2ddl.auto" value="create" />
   </properties>
   </persistence-unit>
</persistence>