持久性.xml对于Hibernate供应商

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了持久性.xml对于Hibernate供应商相关的知识,希望对你有一定的参考价值。

this goes under src/main/resource/META-INF/persistence.xml
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence xmlns="http://java.sun.com/xml/ns/persistence"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
  5. version="1.0">
  6.  
  7. <persistence-unit name="default">
  8. <provider>org.hibernate.ejb.HibernatePersistence</provider>
  9. <properties>
  10. <!-- Auto detect annotation model classes -->
  11. <property name="hibernate.archive.autodetection" value="class"/>
  12.  
  13. <!-- Datasource -->
  14. <property name="hibernate.dialect" value="org.hibernate.dialect.mysqlDialect"/>
  15. <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
  16. <property name="hibernate.connection.username" value="root"/>
  17. <property name="hibernate.connection.password" value=""/>
  18. <property name="hibernate.connection.url" value="jdbc:mysql://localhost/myhibernatejpa_dev"/>
  19.  
  20. </properties>
  21. </persistence-unit>
  22. </persistence>

以上是关于持久性.xml对于Hibernate供应商的主要内容,如果未能解决你的问题,请参考以下文章

使用JNDI明显慢于persistence.xml中的显式连接(Jetty 9 / Hibernate)

Hibernate之HelloWorld

样品持久性.xml使用hibernate和mysql的

hibernate 常识

Hibernate简单用法解析

Hibernate技术文档