本文主要是介绍ORM 之JPA --JPA-Hibernate persistence.xml配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?xml version="1.0" encoding="UTF-8"?>
<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/persistencehttp://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"><persistence-unit name="jpa" transaction-type="RESOURCE_LOCAL"><properties><property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/><property name="hibernate.connection.username" value="root"/><property name="hibernate.connection.password" value=""/><property name="hibernate.connection.url"value="jdbc:mysql://localhost:3306/myerp?useUnicode=true&characterEncoding=UTF-8"/><property name="hibernate.show_sql" value="true" /><property name="hibernate.format_sql" value="true" /></properties></persistence-unit>
</persistence>
这篇关于ORM 之JPA --JPA-Hibernate persistence.xml配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!