MyBatis中association的基本使用方法
更新时间:2022年09月21日 11:32:49 作者:李不卷
在项目中某些实体类之间肯定有关键关系,比如一对一,一对多等,在hibernate中用one to one和one to many,而mybatis中就用association和collection,下面这篇文章主要给大家介绍了关于MyBatis中association基本使用方法的相关资料,需要的朋友可以参考下
通过association对两表进行联表查询
student表属性如下
teacher表属性如下
按照查询嵌套处理
- 关于需求的SQL稍微有点复杂时,可以打开右侧查询框进行语句的编写执行。
当使用以下时,查询出来存在问题
<select id="getStudentTeacher" resultType="Student" > select s.id,s.name,t.id, t.name from student s, teacher t where s.tid = t.id </select>
思路:
- 查询所有的学生信息
- 根据查询出来的学生tid,寻找对应的老师
利用结果集映射,联系起来
编写接口
// 查询所有的学生信息以及对应的老师信息 List<Student> getStudent();
编写mapper配置文件
<select id="getStudent" resultMap = "StudentTeacher" > select * from student </select> <resultMap id="StudentTeacher" type="Student"> <result property="id" column="id" /> <result property="name" column="name" /> <!-- 复杂的属性需要单独处理 对象:association 集合:collection --> <association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/> </resultMap> <select id="getTeacher" resultType="Teacher"> select * from teacher where id = #{nid} </select>
测试得到结果
结果中嵌套了结果
一些注意问题:
- teacher中的id的传递是根据student中得到的tid,将tid传给id,因此#{}中取什么名字都可以。
- association将实体类的teacher属性对应上一个结果,这个结果是将tid作为参数参与下一条sql语句产生的。
按照结果嵌套处理
- 个人认为这种方法更直观
- 正确的查询
<!--按照结果嵌套处理--> <select id="getStudent2" resultMap="StudentTeacher2" > select s.id sid,s.name sname,t.id tid, t.name tname from student s, teacher t where s.tid = t.id </select> <resultMap id="StudentTeacher2" type="Student"> <result property="id" column="sid" /> <result property="name" column="sname" /> <association property="teacher" javaType="Teacher" > <result property="id" column="tid" /> <result property="name" column="tname" /> </association> </resultMap>
查询出来的需要展现的结果都应该在resultMap中进行定义,否则会以默认值进行展示如下,在resultMap中注释掉tid和sname后,执行的结果
总结
到此这篇关于MyBatis中association基本使用的文章就介绍到这了,更多相关MyBatis association使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
SpringMVC中@Valid不起效BindingResult读取不到Error信息
在写SpringMVC项目时,由于要对表单数据进行校验,需要使用@Valid进行校验,但是在进行数据校验时,BindingResult对象无法拦截非法表单数据,result.hasErrors()无论怎么输入都会返回false,本文详细的介绍一下解决方法2021-09-09Java基于redis和mysql实现简单的秒杀(附demo)
这篇文章主要介绍了Java基于redis和mysql实现简单的秒杀(附demo),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2021-02-02动态更改Spring定时任务Cron表达式的优雅方案实例详解
spring定时器非常强大,但是有时候我们需要在不需要重启应用就可以动态的改变Cron表达式的值,下面这篇文章主要给大家介绍了关于动态更改Spring定时任务Cron表达式的优雅方案,需要的朋友可以参考下2022-12-12
最新评论