Advertisement
AmirAlSadi

SCMapping.hbm.xml

May 27th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE hibernate-mapping PUBLIC
  4. "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
  5. "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  6.  
  7. <hibernate-mapping>
  8. <class name="it.unibo.tw.hibernate.SCMapping" table="mapping">
  9. <id type = "int" column = "id">
  10. <generator class="native"/>
  11. </id>
  12. <properties name="map" unique="true">
  13. <many-to-one name="course" class="it.unibo.tw.hibernate.Course"
  14. column="idCourse"/>
  15. <many-to-one name="student" class="it.unibo.tw.hibernate.Student"
  16. column="idStudent"/>
  17. </properties>
  18. </class>
  19. </hibernate-mapping>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement