Nantes Université

Skip to content
Extraits de code Groupes Projets
persistence.xml 1,47 ko
Newer Older
Sunye's avatar
Sunye a validé
<persistence 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"
   version="1.0">

   <persistence-unit name="gtd">

      <properties>
          <!-- Scan for annotated classes and Hibernate mapping XML files -->
          <property name="hibernate.archive.autodetection" value="class"/>

          <property name="hibernate.connection.driver_class" 
          			value="org.h2.Driver" />
          <property name="hibernate.connection.url" 
          			value="jdbc:h2:~/.gtd/db" />
          <property name="hibernate.connection.username" 
          			value="sa" />
          <property name="hibernate.connection.password" 
          			value="" />

          <property name="hibernate.c3p0.min_size"
                    value="5"/>
          <property name="hibernate.c3p0.max_size"
                    value="20"/>
          <property name="hibernate.c3p0.timeout"
                    value="300"/>
          <property name="hibernate.c3p0.max_statements"
                    value="50"/>
          <property name="hibernate.c3p0.idle_test_period"
                    value="3000"/>

          <property name="hibernate.dialect"
                    value="org.hibernate.dialect.H2Dialect"/>

		  <property name="hibernate.hbm2ddl.auto" value="update"/>
			
      </properties>
      
   </persistence-unit>

</persistence>