Advertisement
Guest User

Untitled

a guest
Apr 18th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-configuration SYSTEM
  3. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4.  
  5. <hibernate-configuration>
  6.    <session-factory>
  7.    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  8.    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  9.    <property name="hibernate.id.new_generator_mappings">false</property>
  10.    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/ateamDB</property>
  11.    <property name="hibernate.connection.username">root</property>
  12.    <property name="hibernate.connection.password">pass</property>
  13.    <mapping class="cz.vutbr.fit.ateam.persistence.models.User"/>
  14.    <mapping class="cz.vutbr.fit.ateam.persistence.models.Project"/>
  15. </session-factory>
  16. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement