Advertisement
Guest User

Untitled

a guest
Aug 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.54 KB | None | 0 0
  1. hibernate.cfg.xml
  2.  
  3. <!DOCTYPE hibernate-configuration PUBLIC
  4.        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  5.        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  6.  
  7. <hibernate-configuration>
  8.  
  9.     <session-factory>
  10.  
  11.         <!-- JDBC Database connection settings -->
  12.         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  13.         <property name="connection.url">jdbc:mysql://localhost:3306/users?useUnicode=true&amp;useJDBCCompliantTimezoneShift=true&amp;useLegacyDatetimeCode=false&amp;serverTimezone=UTC</property>
  14.         <property name="connection.username">root</property>
  15.         <property name="connection.password">pokemon</property>
  16.  
  17.         <!-- JDBC connection pool settings ... using built-in test pool -->
  18.         <property name="connection.pool_size">1</property>
  19.  
  20.         <!-- Select our SQL dialect -->
  21.         <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
  22.  
  23.         <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
  24.    
  25.         <!-- Echo the SQL to stdout -->
  26.         <property name="show_sql">true</property>
  27.        
  28.        
  29.         <property name="hbmdl.auto">create-drop</property>
  30.  
  31.     <!-- Set the current session context -->
  32.     <property name="current_session_context_class">thread</property>
  33.  
  34.  
  35.    
  36.      
  37.      
  38.                    
  39.         <mapping class="com.mycompany.hibernate_brain.Users" />  
  40.          
  41.     </session-factory>
  42.  
  43. </hibernate-configuration>
  44.  
  45.  
  46.  
  47.  
  48. PS.Nice pasword :D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement