欢迎来到天天文库
浏览记录
ID:37332972
大小:166.50 KB
页数:9页
时间:2019-05-21
《Hibernate实验二》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Hibernate实验二实验内容:1.双向多对多关联映射2.Hibernate检索方式实验目的:1.掌握多对多关联关系的配置2.掌握cascade、inverse属性的使用3.掌握HQL查询的使用步骤4.掌握QBC查询的使用步骤一、双向多对多关联映射以学生课程表为例,一个学生可以选修多门课程,一门课程也可以被多位学生选修。1.建立数据库表学生表:createtablestudent(sidintnotnullauto_incrementprimarykey,snamevarchar(16),sagevarchar(16));课程表:createt
2、ablecourse(cidintnotnullauto_incrementprimarykey,cnamevarchar(16));关联表:createtablestudent_course_link(sidintnotnull,cidintnotnull,primarykey(sid,cid),foreignkey(sid)referencesstudent(sid),foreignkey(cid)referencescourse(cid));1.创建Java项目mtm,并添加Hibernate包创建many.to.many.bean包,产生
3、的实体类和映射文件将放到此包下。2.使用Hibernate逆向工程自动产生实体类和映射文件利用上次实验的方法,找到数据库下的表。使用Hibernate逆向工程产生实体类和映射文件。请选择“many-to-many”。选择双向多对多,出现三个表。产生的实体类和映射文件如下:学生类:publicclassStudentimplementsjava.io.Serializable{//FieldsprivateIntegersid;privateStringsname;privateStringsage;privateSetcourses=newHas
4、hSet(0);//省略setter和getter课程类:publicclassCourseimplementsjava.io.Serializable{//FieldsprivateIntegercid;privateStringcname;privateSetstudents=newHashSet(0);//省略setter和getterStudent.hbm.xml映射文件
5、ernateMappingDTD3.0//EN""http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">6、ame="sid"/>7、ascade="all">Course.hbm.xml映射文件
6、ame="sid"/>7、ascade="all">
7、ascade="all">
8、LIC"-//Hibernate/HibernateMappingDTD3.0//EN""http://hibernate.source
此文档下载收益归作者所有