sanket_bodhale

hibernate cfg xml

Feb 4th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.63 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3.     "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4.     "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6.     <session-factory>
  7.         <property name="hibernate.connection.password">123</property>
  8.         <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/test</property>
  9.         <property name="hibernate.connection.username">root</property>
  10.         <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  11.         <mapping resource="Registration.hbm.xml" />
  12.     </session-factory>
  13. </hibernate-configuration>
Add Comment
Please, Sign In to add comment