1、什么是关联关系?
关联关系是指类之间的引用关系,如果类A与类B关联,那么类A将被定义成类B的属性。
例如:
public class A{ private String name; } public class B{ private String sid; private Float score; private Address address; }
2、关联关系的分类
一对一,一对多,多对一,多对多
2.1一个人负责多个项目开发,例如:张三负责 A B C
2.2一对多:一本书对应多种书本类型,例如:西游记 -> 神话、古典、名著
2.3多对一:多本书指向一种书本类型,例如:西游记、山海经、聊斋志异 -> 神话
2.4多对多:永远视为两个一对多
3.将数据表导入数据库中
-- 一对多 -- 客户表(主表) create table t_customer ( customer_id int primary key not null auto_increment, customer_name varchar(50) not null ); -- 多对一 -- 订单表(从表) create table t_order ( order_id int primary key not null auto_increment, order_no varchar(50) not null unique, cid int not null, foreign key(cid) references t_customer(customer_id) );
4、通过 mybatis-generator 插件生成dao、mapper、model
4.1配置mybatis-generator插件生成文件位位置
4.2修改generatorConfig.xml配置文件的生成目录(mapper和model)及对应生成关系
5、修改Customer、Order实体类
5.1实现序列化接口
5.2建立实体映射关联关系(一对多、多对一)
#一对多:一个客户对应多个订单
private List orders=new ArrayList();
#多对一:多个订单对应一个客户(一个订单对应一个客户)
private Customer customer;
6、配置 mybatis 关联映射
6.1 一对多
<resultMap id="one2many" type="Customer"> <id column="customer_id" property="customerId"/> <result column="customer_name" property="customerName"/> <!-- 一对多的关系 --> <!-- property: 指的是集合属性的值, ofType:指的是集合中元素的类型 --> <collection property="orders" ofType="Order"> <id column="order_id" property="orderId"/> <result column="order_no" property="orderNo"/> </collection> </resultMap>
注意事项,使用左外连接而非内连接!!!
6.2 多对一
<resultMap id="many2one" type="Order"> <id column="order_id" property="orderId"/> <result column="order_no" property="orderNo"/> <result column="cid" property="cid"/> <!-- 多对一的关系 --> <!-- property: 指的是属性的值, javaType:指的是属性的类型--> <association property="customer" javaType="Customer"> <id column="customer_id" property="customerId"/> <result column="customer_name" property="customerName"/> </association> </resultMap>
下面是刚写的代码,我就不都放上来了
OrderMapper.java
package com.xnx.ssm.mapper; import com.xnx.ssm.model.Order; import com.xnx.ssm.model.vo.OrderVo; import org.apache.ibatis.annotations.Param; public interface OrderMapper { int deleteByPrimaryKey(Integer orderId); int insert(Order record); int insertSelective(Order record); Order selectByPrimaryKey(Integer orderId); OrderVo queryOrderVoByOrderId(@Param("orderId") Integer orderId); int updateByPrimaryKeySelective(Order record); int updateByPrimaryKey(Order record); }
下面是运行效果:
无@Data注解运行效果
有@Data注解运行效果