1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://127.0.0.1/anichemGSBD</property>
<property name="connection.username">root</property>
<property name="connection.password"></property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">4</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<property name="current_session_context_class">thread</property>
<!-- Disable the second-level cache
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property> -->
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup
<property name="hbm2ddl.auto">create</property> -->
<mapping resource="anichem/gestionstock/pojo/POJOUtilisateur.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJODroit.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOCategorie.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOProduit.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOFournisseur.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOReception.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOLigneReception.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOClient.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOVente.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOLigneVente.hbm.xml"/>
<mapping resource="anichem/gestionstock/pojo/POJOModePaiement.hbm.xml"/>
</session-factory>
</hibernate-configuration> |