Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 15th, 2012  |  syntax: None  |  size: 1.59 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. hibernate.connection.provider_class property and its equivalent property in EclipseLink
  2. <?xml version="1.0" encoding="UTF-8"?>
  3.     <persistence version="1.0" 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_1_0.xsd">
  4.       <persistence-unit name="NetStoragePU" transaction-type="JTA">
  5.         <provider>org.hibernate.ejb.HibernatePersistence</provider>
  6.         <exclude-unlisted-classes>false</exclude-unlisted-classes>
  7.         <properties>
  8.           <property name="hibernate.connection.provider_class" value="org.hibernate.connection.DriverManagerConnectionProvider" />
  9.           <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
  10.           <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
  11.           <property name="hibernate.hbm2ddl.auto" value="update"/>      
  12.           <property name="hibernate.format_sql" value="true"/>
  13.           <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/NetStorage"/>
  14.           <property name="hibernate.connection.username" value="nbuser"/>
  15.           <property name="hibernate.connection.password" value="nbuser"/>
  16.           <property name="hibernate.show_sql" value="true" />
  17.           <property name="hibernate.hbm2ddl.auto" value="update"/>
  18.         </properties>
  19.       </persistence-unit>
  20.     </persistence>
  21.        
  22. <property name="hibernate.connection.provider_class" value="org.hibernate.connection.DriverManagerConnectionProvider" />