Guest User

Untitled

a guest
Apr 16th, 2018
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. ----------------------------------------------------hibernate.cfg.xml
  2. <?xml version='1.0' encoding='utf-8'?>
  3. <!DOCTYPE hibernate-configuration PUBLIC
  4. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  5. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  6.  
  7. <hibernate-configuration>
  8. <session-factory>
  9. <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
  10. <property name="connection.url">jdbc:mysql://localhost:3306/day2</property>
  11. <property name="connection.username">root</property>
  12. <property name="connection.password">root</property>
  13. <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
  14. <property name="show_sql">false</property>
  15. <property name="hibernate.hbm2ddl.auto">create</property>
  16. <!-- Mapping files -->
  17. <mapping resource="employee.hbm.xml"/>
  18. </session-factory>
  19. </hibernate-configuration>
  20.  
  21. ----------------employee.hbm.xml
  22.  
  23. <?xml version="1.0"?>
  24. <!DOCTYPE hibernate-mapping PUBLIC
  25. "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  26. "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  27.  
  28. <hibernate-mapping>
  29.  
  30. <class name="com.entity.Employee" table="Employee">
  31.  
  32. <id name="empId" type="int" column="EID">
  33. <generator class="assigned"/>
  34. </id>
  35.  
  36. <property name="empName" column="EmpName" />
  37.  
  38.  
  39. </class>
  40. </hibernate-mapping>
  41.  
  42. -------------------------
Add Comment
Please, Sign In to add comment