keymasterviriya1150

xml

Oct 30th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  3. <hibernate-configuration>
  4.   <session-factory>
  5.     <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  6.     <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  7.     <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/testorder?zeroDateTimeBehavior=convertToNull</property>
  8.     <property name="hibernate.connection.username">root</property>
  9.     <property name="hibernate.show_sql">true</property>
  10.     <property name="hibernate.current_session_context_class">thread</property>
  11.     <property name="hibernate.query.factory_class">org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory</property>
  12.     <mapping resource="order/Orders.hbm.xml"/>
  13.     <mapping resource="order/Lists.hbm.xml"/>
  14.   </session-factory>
  15. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment