hibernate的关联关系(多对多),Vue菜单能用自关联

转载请标明出处:https://blog.csdn.net/men_ma/article/details/106847165.
本文出自 不怕报错 就怕不报错的小猿猿 的博客

前言

在easyUI中,那个树形菜单功能,有一个菜单表和一个用户表,还有一个用户中间表,这种关系就是多对多的关系,一个菜单能够被多个用户访问到,那么一个用户呢又可以访问到多个菜单,多对多的关系可以看成两个一对多

1.数据库的多对多

1.1 数据库中不能直接映射多对多

处理:创建一个桥接表(中间表),将一个多对多关系转换成两个一对多

注1:数据库多表联接查询
永远就是二个表的联接查询

       A   B   C  D
          t1   C
               t2 D
                  t3

注2:交叉连接

注3:外连接:left(左)/right(右)/full(左右)
主从表:连接条件不成立时,主表记录永远保留,与null匹配
A B AB
select * from A,B,AB WHERE A.aID=AB.aID and b.bid = AB.bid
where

	   在hibernate中,你只管查询当前表对象即可,
	   hibernate会自动关联桥表以及关联表查询出关联对象
	   Book	Category Book_category
	   select * from Book b,Book_category bc,category where b.bid = bc.bid and bc.cid = c.cid
	   and bid = 2

2.hibernate的多对多

概念hibernate可以直接映射多对多关联关系(看作两个一对多)

3.多对多关系注意事项

3.1 一定要定义一个主控方

3.2 多对多删除

  3.2.1 主控方直接删除
  3.2.2 被控方先通过主控方解除多对多关系,再删除被控方
  3.2.3 禁用级联删除

3.3 关联关系编辑,不需要直接操作桥接表,hibernate的主控方会自动维护

4.案例

4.1 自关联查询(菜单表)

为什么要在这里讲一些自关联呢?我们来看看自关联的价值:
在这里插入图片描述

数据库中的表字段及数据:
在这里插入图片描述

在这里插入图片描述
自关联所用到的类及配置文件:
在这里插入图片描述

实体类TreeNode.java:为减少博客的幅度,所以在这里实体类的get/set方法及构造函数和toString方法就省略了

public class TreeNode {
	private Integer nodeId;
	private String nodeName;
	private Integer treeNodeType;
	private Integer position;
	private String url;
	private TreeNode parent;
	private Set<TreeNode> children = new HashSet<TreeNode>();
	private Integer initChildren = 0;
}

TreeNode.hbm.xml配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
	<class name="com.xiaoqing.four.entity.TreeNode" table="t_hibernate_sys_tree_node">
		<id name="nodeId" type="java.lang.Integer" column="tree_node_id">
			<generator class="increment" />
		</id>
		<property name="nodeName" type="java.lang.String"
			column="tree_node_name">
		</property>
		<property name="treeNodeType" type="java.lang.Integer"
			column="tree_node_type">
		</property>
		<property name="position" type="java.lang.Integer"
			column="position">
		</property>
		<property name="url" type="java.lang.String"
			column="url">
		</property>
		
		<many-to-one name="parent" class="com.xiaoqing.four.entity.TreeNode" column="parent_node_id"/>
		
		<set name="children" cascade="save-update" inverse="true">
			<key column="parent_node_id"></key>
			<one-to-many class="com.xiaoqing.four.entity.TreeNode"/>
		</set>
	</class>
</hibernate-mapping>

TreeNodeDao:

public class TreeNodeDao {
	public TreeNode load(TreeNode treeNode) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		TreeNode t = session.load(TreeNode.class, treeNode.getNodeId());
		if(t != null && new Integer(1).equals(treeNode.getInitChildren())) {
			Hibernate.initialize(t.getChildren());
			Hibernate.initialize(t.getParent());
		}
		transaction.commit();
		session.close();
		return t;
	}
}

Junit测试TreeNodeDaoTest:

public class TreeNodeDaoTest {
	private TreeNodeDao treeNodeDao = new TreeNodeDao();
	/**
	 * 注意:
	 * 		1.这个在Vue的后台要用
	 * 		2.它只能加载出直系亲属(父节点,跟子节点)
	 * 			说白了,爷爷跟孙子加载不出来的
	 */
	@Test
	public void testLoad() {
		TreeNode treeNode = new TreeNode();
//		权限管理
		treeNode.setNodeId(6);
		treeNode.setInitChildren(1);
		
		TreeNode t = this.treeNodeDao.load(treeNode);
//		拿到当前节点
		System.out.println(t);
//		拿到父节点
		System.out.println(t.getParent());
//		拿到子节点
		System.out.println(t.getChildren());
	}

}

运行结果:
在这里插入图片描述

4.2 多对多级联查询(书籍表、书籍类别表,书籍跟类别的中间表)

一本书可能会划分为两个类别,那么一个书籍的类别肯定有多本书,这就是多对多的关系

4.2.1 数据库中的书籍表结构及表数据及实体类:

表结构:
在这里插入图片描述

表数据:
在这里插入图片描述

书籍表的实体类Book.java:为减少博客的幅度,所以在这里实体类的get/set方法及构造函数和toString方法就省略了

	private Integer bookId;
	private String bookName;
	private Float price;
	private Set<Category> categories = new HashSet<Category>();
	private Integer initCategories = 0;

4.2.2 数据库中的书籍类别表结构及表数据及实体类:

表结构:
在这里插入图片描述
表数据:
在这里插入图片描述
书籍类别表的实体类Category.java:为减少博客的幅度,所以在这里实体类的get/set方法及构造函数和toString方法就省略了

	private Integer categoryId;
	private String categoryName;
	private Set<Book> books = new HashSet<Book>();

4.2.3 数据库中的书籍跟类别的中间表结构及表数据:

在这里插入图片描述
在这里插入图片描述
在这里我们的中间表不需要实体类

4.2.4 实体类的配置文件

== book.hbm.xml配置文件:注释打的比较仔细了==

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
	<class name="com.xiaoqing.four.entity.Book" table="t_hibernate_book">
<!-- 		<cache usage="read-only" region="com.zking.five.entity.Book"/> -->
		<id name="bookId" type="java.lang.Integer" column="book_id">
			<generator class="increment" />
		</id>
		<property name="bookName" type="java.lang.String"
			column="book_name">
		</property>
		<property name="price" type="java.lang.Float"
			column="price">
		</property>
		
		<!-- 
			set标签:
				table:指的是中间表
				name:指的是实体类中关联属性
				cascade:级联新增以及级联修改
				inverse:中间表的数维护交给哪个实体类来控制,inverse的字面意思是反方,默认inverse=true,
						那也就意味着默认由对方来控制中间表的数据维护
			key标签:
				column:当前映射类Book对应的表t_hibernate_book的主键,在中间表的外键
			
			many-to-many标签:
				column:当前映射类关联属性对应的类的主键,在中间表的外键
				class:当前映射类关联属性对应的类的全路径名
		 -->
		<set table="t_hibernate_book_category" name="categories" cascade="save-update" inverse="true">
			<!-- one -->
			<key column="bid"></key>
			<!-- many -->
			<many-to-many column="cid" class="com.xiaoqing.four.entity.Category"></many-to-many>
		</set>
	</class>
</hibernate-mapping>

category.hbm.xml配置文件:注释打的比较仔细了

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
	
	<!--
		hibernate中多对多的查询原理
			1、建模得到了sessionfactory工厂
			2、sessionfactory中包含了两个多对多的关系映射文件,那么就可以通过流加载那两个映射文件
			      这里以com/xiaoqing/four/entity/category.hbm.xml为例,加载完后可以对其进行建模
			3、可以拿到com.xiaoqing.four.entity.Category以及表t_hibernate_category
			   通过t_hibernate_category以及下列的column列段可以多态生成SQL语句
			  select category_id,category_name from t_hibernate_category where category_id=?(5)
			  查询结果:  5   a1
			  Category c=Class.forName("com.xiaoqing.four.entity.Category");
			  Filed  categoryNameField=c.getClass().getDecafiedld("categoryName");
			  categoryNameField.setAccessable(true);
			  categoryNameField.set(c,"a1");
			  同理
			  categoryNameField.set(c,5);
			 那也意味着当前c实例中所有属性值已经赋值完毕
			 
			4、同样对此文件com/xiaoqing/four/entity/category.hbm.xml建模,
			     可以得到中间表t_hibernate_book_category
			  以及关联属性的全路径名com.xiaoqing.four.entity.Book
			  自然形成一个SQL语句
			  select cid,bid from t_hibernate_book_category where cid=?(5)
			 结果:
			 	5	17	5
				6	20	5
				7	21	5
				8	22	5
				9	24	5
				
				String sql=select * from t_hibernate_book_category where book_id in(17,20,21.....)
				List<book> list=BaseDao.executeQuery(sql,Book.class,null)	
				
				BaseDao.executeQuery(sql,Class clz,pageBean)			
			5、c.setBooks(books)(总共用到两次建模,三次反射)	
	  -->
	<class name="com.xiaoqing.four.entity.Category" table="t_hibernate_category">
		<id name="categoryId" type="java.lang.Integer" column="category_id">
			<generator class="increment" />
		</id>
		<property name="categoryName" type="java.lang.String"
			column="category_name">
		</property>
		
		<set table="t_hibernate_book_category" name="books" cascade="save-update" inverse="true">
			<key column="cid"></key>
			<many-to-many column="bid" class="com.xiaoqing.four.entity.Book"></many-to-many>
		</set>
	</class>
</hibernate-mapping>

添加到总配置文件hibernate.hbm.xml:

			<!--一对多的自关联  -->
			<mapping resource="com/xiaoqing/four/entity/TreeNode.hbm.xml"/>
			<!--多对多的讲解  -->
			<mapping resource="com/xiaoqing/four/entity/book.hbm.xml"/>
			<mapping resource="com/xiaoqing/four/entity/category.hbm.xml"/>

4.2.5 BookDao增删改查方法:

public class BookDao{
//增加书籍
	public Integer addBook(Book book) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		Integer bid = (Integer) session.save(book);
		transaction.commit();
		session.close();
		return bid;
	}
//增加书籍类别
	public Integer addCategory(Category category) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		Integer cid = (Integer) session.save(category);
		transaction.commit();
		session.close();
		return cid;
	}
//查询书籍类别
	public Category getCategory(Category category) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		Category c = session.get(Category.class, category.getCategoryId());
		transaction.commit();
		session.close();
		return c;
	}
	//查询书籍
	public Book getBook(Book book) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		Book b = session.get(Book.class, book.getBookId());
		if (b != null && new Integer(1).equals(book.getInitCategories())) {
			Hibernate.initialize(b.getCategories());
		}
		transaction.commit();
		session.close();
		return b;
	}
	//删除书籍
	public void delBook(Book book) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		session.delete(book);
		transaction.commit();
		session.close();
	}
	//删除书籍类别
	public void delCategory(Category category) {
		Session session = SessionFactoryUtils.openSession();
		Transaction transaction = session.beginTransaction();
		Category c = session.get(Category.class, category.getCategoryId());
		if(c!=null) {
			for (Book b : c.getBooks()) {
//				通过在被控方通过主控方来解除关联关系,最后被控方再做删除
				b.getCategories().remove(c);
			}
		}
		session.delete(c);
		transaction.commit();
		session.close();
	} 
}

4.2.6 Junit测试BookDaoTest:

public class BookDaoTest {
	private BookDao bookDao = new BookDao();

	@Test
	public void testGetBook() {
		Book book = new Book();
		book.setBookId(8);
		book.setInitCategories(1);
		Book b = this.bookDao.getBook(book );
		System.out.println(b.getBookName());
		System.out.println(b.getCategories());
	}
	
	/**
	 * book.hbm.xml	inverse=fasle
	 * category.hbm.xml inverse=true
	 * 数据添加正常
	 * 书籍表、桥接表各新增一条数据
	 */
	@Test
	public void test1() {
		Book book = new Book();
		book.setBookName("243自传");
		book.setPrice(10f);
		Category category = new Category();
		category.setCategoryId(5);
//		直接将category对象加入到新建的book中是错误的,因为此时的category是临时态的,hibernate是不会管理的
//		book.getCategories().add(category);
		Category c = this.bookDao.getCategory(category);
		
//		c.getBooks().add(book);
		book.getCategories().add(c);
		this.bookDao.addBook(book);
	}

	/**
	 * book.hbm.xml	inverse=true
	 * category.hbm.xml inverse=true
	 * 只增加书籍表数据
	 * 桥接表不加数据
	 * 原因:双方都没有去维护关系
	 */
	@Test
	public void test2() {
		Book book = new Book();
		book.setBookName("c");
		book.setPrice(10f);
		Category category = new Category();
		category.setCategoryId(5);
		Category c = this.bookDao.getCategory(category);
		
		book.getCategories().add(c);
		this.bookDao.addBook(book);
//		c.getBooks().add(book);
	}
}

Junit测试test1()方法的效果(数据库):中间表也增加了数据

在这里插入图片描述
在这里插入图片描述
Junit测试testGetBook()方法的效果(控制台):
在这里插入图片描述

Junit测试test2()方法的效果(数据库):

在这里插入图片描述
在这里插入图片描述
注意:Junit中的测试

test1()和test2()方法在代码上没什么区别,代码都是一样的,唯一的区别就是主控制方改变了,各实体类的配置中的inverse=fasle属性设置的值不同,在test1()和test2()方法上的段注释打的比较清楚了,包括各配置文件中也说的比较详细,不太懂的欢迎大家在下评论!!!

4.hibernate中多对多的查询原理(总结)

			1、建模得到了sessionfactory工厂
			2、sessionfactory中包含了两个多对多的关系映射文件,那么就可以通过流加载那两个映射文件
			      这里以com/xiaoqing/four/entity/category.hbm.xml为例,加载完后可以对其进行建模
			3、可以拿到com.xiaoqing.four.entity.Category以及表t_hibernate_category
			   通过t_hibernate_category以及下列的column列段可以多态生成SQL语句
			  select category_id,category_name from t_hibernate_category where category_id=?(5)
			  查询结果:  5   a1
			  Category c=Class.forName("com.xiaoqing.four.entity.Category");
			  Filed  categoryNameField=c.getClass().getDecafiedld("categoryName");
			  categoryNameField.setAccessable(true);
			  categoryNameField.set(c,"a1");
			  同理
			  categoryNameField.set(c,5);
			 那也意味着当前c实例中所有属性值已经赋值完毕
			 
			4、同样对此文件com/xiaoqing/four/entity/category.hbm.xml建模,
			     可以得到中间表t_hibernate_book_category
			  以及关联属性的全路径名com.xiaoqing.four.entity.Book
			  自然形成一个SQL语句
			  select cid,bid from t_hibernate_book_category where cid=?(5)
			 结果:
			 	5	17	5
				6	20	5
				7	21	5
				8	22	5
				9	24	5
				
				String sql=select * from t_hibernate_book_category where book_id in(17,20,21.....)
				List<book> list=BaseDao.executeQuery(sql,Book.class,null)	
				
				
				BaseDao.executeQuery(sql,Class clz,pageBean)	
			
			5、c.setBooks(books)(总共用到两次建模,三次反射)
			 	
			  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值