# mybatis-demo **Repository Path**: pushbug/mybatis-demo ## Basic Information - **Project Name**: mybatis-demo - **Description**: 关联查询Demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-10-30 - **Last Updated**: 2023-10-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Mybatis 关联查询

一个小Demo

## 1. 一对一 ### 1.1 使用association映射 `一个丈夫对应一个妻子` ```xml ``` ## 2. 一对多 ### 2.1 使用collection映射 `一个部门对应多个职位` ```xml ``` ## 3. 多对一 ### 3.1 使用association映射 `多个学生对应一个班级` ```xml ``` ## 4. 多对多 ### 4.1 使用collection映射 `多个角色对应多个功能` ```xml ```