Guest User

persistence.xml

a guest
Mar 17th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.41 KB | None | 0 0
  1. <persistence xmlns="http://java.sun.com/xml/ns/persistence"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
  4.    http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
  5.     version="1.0">
  6.     <persistence-unit name="emf">
  7.         <provider>org.hibernate.ejb.HibernatePersistence</provider>
  8.  
  9.  
  10.  
  11.         <properties>
  12.             <property name="hibernate.archive.autodetection" value="class, hbm" />
  13.             <property name="hibernate.show_sql" value="false" />
  14.             <property name="hibernate.format_sql" value="true" />
  15.             <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
  16.  
  17.             <property name="hibernate.connection.url"
  18.                 value="jdbc:mysql://localhost/vorlesung?autoReconnect=true" />
  19.             <property name="hibernate.connection.username" value="vorlesung" />
  20.             <property name="hibernate.connection.password" value="vorlesung" />
  21.  
  22.  
  23.             <property name="hibernate.hbm2ddl.auto" value="update" />
  24.  
  25.             <property name="hibernate.c3p0.min_size" value="5" />
  26.             <property name="hibernate.c3p0.max_size" value="10" />
  27.             <property name="hibernate.c3p0.timeout" value="300" />
  28.             <property name="hibernate.c3p0.max_statements" value="50" />
  29.             <property name="hibernate.c3p0.idle_test_period" value="300" />
  30.             <property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" />
  31.         </properties>
  32.  
  33.     </persistence-unit>
  34. </persistence>
Add Comment
Please, Sign In to add comment