2018年7月30日
摘要: package com.ddwei.test; import org.hibernate.Session; import org.hibernate.Transaction; import com.ddwei.entity.Employee2; import com.ddwei.entity.Project; import com.ddwei.util.HibernateUtil; /**... 阅读全文
posted @ 2018-07-30 17:15 菜鸟乙 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 如何通过添加中间表实现多对多? 1 在双方实体中添加一个保存对方的集合。 2 在双方映射文件中 使用<set>和<many-to-many>元素进行关联关系配置(注意此处) 阅读全文
posted @ 2018-07-30 16:47 菜鸟乙 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 本节主要内容:配置映射文件 Project.hbm.xml Employee2.hbm.xml 阅读全文
posted @ 2018-07-30 16:39 菜鸟乙 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 生成实体类 和 cfg.xml配置 cfg.xml 参照一对多映射 实体类如下: Project 类 Employee2类 阅读全文
posted @ 2018-07-30 16:13 菜鸟乙 阅读(136) 评论(0) 推荐(0) 编辑
摘要: --创建表 -- 创建项目表 create table project( proid int(10) not null comment '项目Id', proname varchar(30) comment '项目名称' ); -- 创建员工表 create table employee2( emp 阅读全文
posted @ 2018-07-30 15:20 菜鸟乙 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1 用途: 员工和项目之间的多对多关系 2 实现: 员工表和项目表之外,建立员工和项目关联表来实现: 3 hibernate应用: set元素和many-to-many来实现 阅读全文
posted @ 2018-07-30 11:34 菜鸟乙 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1 配置 项目右击==》properties==>project facets==>convert to faceted form...复选框选中java 和 jpa==》further configuration available ==>eclipse link 2.5x==>user libr 阅读全文
posted @ 2018-07-30 11:26 菜鸟乙 阅读(129) 评论(0) 推荐(0) 编辑