Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.87 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3.        "-//Hibernate/Hibernate Configuration DTD//EN"
  4.        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7.  
  8.     <session-factory>
  9.         <property name="connection.url">jdbc:mysql://localhost:3306/Hallberg_F18</property>
  10.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  11.         <property name="connection.username">root</property>
  12.         <property name="connection.password"></property>
  13.         <property name="hibernate.hbm2ddl.auto">create-drop</property>
  14.         <property name = "hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
  15.  
  16.         <mapping class="com.Hallberg.Jacob.F18.Book"/>
  17.         <mapping class="com.Hallberg.Jacob.F18.DVD"/>
  18.     </session-factory>
  19.  
  20. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement