Advertisement
Guest User

Untitled

a guest
May 29th, 2018
107
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 SYSTEM
  3.        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4. <hibernate-configuration>
  5.     <session-factory>
  6.  
  7.         <property name = "hibernate.dialect">
  8.             org.hibernate.dialect.MySQLDialect
  9.         </property>
  10.  
  11.         <property name = "hibernate.connection.driver_class">
  12.             com.mysql.jdbc.Driver
  13.         </property>
  14.  
  15.         <!-- Assume test is the database name -->
  16.  
  17.         <property name = "hibernate.connection.url">
  18.             jdbc:mysql://localhost:3306/school?profileSQL=false
  19.         </property>
  20.  
  21.         <property name = "hibernate.connection.username">
  22.             hbstudent
  23.         </property>
  24.  
  25.         <property name = "hibernate.connection.password">
  26.             hbstudent
  27.         </property>
  28.  
  29.         <property name="connection.pool_size">1</property>
  30.  
  31.         <property name="show_sql">true</property>
  32.  
  33.         <property name="current_session_context_class">thread</property>
  34.  
  35.  
  36.  
  37.     </session-factory>
  38. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement