Advertisement
Guest User

Untitled

a guest
Jan 27th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  3. <hibernate-configuration>
  4.   <session-factory>
  5.     <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  6.     <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/eshop_db</property>
  7.     <property name="hibernate.connection.username">root</property>  
  8.     <property name="hibernate.show_sql">true</property>
  9.     <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  10.     <property name="hibernate.current_session_context_class">thread</property>
  11.     <property name="hibernate.hbm2ddl.auto">create</property>
  12.    
  13.    
  14.     <mapping class="ma.eshop.Entity.Article"/>
  15.     <mapping class="ma.eshop.Entity.Client"/>
  16.     <mapping class="ma.eshop.Entity.Client_Cmd"/>
  17.     <mapping class="ma.eshop.Entity.Client_Cmd_Pk"/>
  18.     <mapping class="ma.eshop.Entity.Commande"/>
  19.  
  20.   </session-factory>
  21. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement