Advertisement
Epimanjr

Hibernate Config

Oct 18th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.89 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration
  3. PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
  4. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6.     <session-factory>
  7.         <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  8.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  9.         <property name="hibernate.connection.url">
  10.             jdbc:mysql://localhost/listediffusion</property>
  11.         <property name="hibernate.connection.username">root</property>
  12.         <property name="hibernate.connection.password"></property>
  13.         <property name="show_sql">true</property>
  14.         <property name="hbm2ddl.auto">update</property>
  15.         <!-- Mapping files -->
  16.         <mapping resource="metier/abonnee.hbm.xml"/>
  17.     </session-factory>
  18. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement