知识点:JavaType和ofType都是用来指定对象类型的,但是JavaType是用来指定pojo中属性的类型,而ofType指定的是映射到list集合属性中pojo的类型。

本次mybatis的练习是使用的springboot+mybatis

第一步:在mysql 数据库创建students 和cards表并插入数据

create table cards(
cid int(5) primary key,
cnum varchar(10)
); create table students(
sid int(5) primary key,
sname varchar(10),
scid int(5),
constraint scid_fk foreign key(scid) references cards(cid)
); insert into cards(cid,cnum) values(1,'111');
insert into students(sid,sname,scid) values(1,'哈哈',1); select * from cards;
select * from students;

第二步:配置springboot配置文件application.properties并在该文件添加以下配置信息

spring.datasource.url=jdbc:mysql://127.0.0.1:3306/diamond?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.driver-class-name=com.mysql.jdbc.Driver  

第三步:创建Domain: Student.java 和Card.java

import lombok.Data;

@Data
public class Card {
private Integer id;
private String num;
}

 

@Data
public class Student {
private Integer id;
private String name;
private Card card;
}

第四步:创建StudentCardMapper接口 

import com.longteng.diamond.domain.Student;
import org.apache.ibatis.annotations.Mapper; @Mapper
public interface StudentCardMapper {
/**
* 查询1号学生的信息
* @param id 表示学生的编号
*/
Student selectById(Integer id);
}

第五步:创建StudentCardMapper.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.longteng.diamond.dao.StudentCardMapper">
<resultMap id="studentCardMap" type="com.longteng.diamond.domain.Student">
<id property="id" column="sid" jdbcType="INTEGER"></id>
<result property="name" column="sname" jdbcType="VARCHAR"></result>
<!-- 引入CardMapper.xml文件中的映射信息
property表示Student类的关联属性
resultMap表示引入CardMapper.xml文件的映射类型
-->
</resultMap>
<select id="selectById" parameterType="java.lang.Integer" resultMap="studentCardMap">
select s.sid,s.sname,s.scid,c.cnum,c.cid
from students s inner join cards c
on s.scid= c.cid and s.sid=#{xx}
</select> </mapper>

第六步:创建Controller

import com.longteng.diamond.dao.StudentCardMapper;
import com.longteng.diamond.domain.Student;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody; import javax.annotation.Resource; @Controller
public class StudentCardController {
@Resource
StudentCardMapper studentCardMapper;
@RequestMapping("/testMapper")
public @ResponseBody String test(){
Student student = studentCardMapper.selectById(1);
return student.toString();
}
}

第七步:调用接口http://localhost/testMapper执行结果如下:

Student(id=1, name=哈哈, card=null)

其中card = null 是由于在第五步操作中resultMap 中没有关联card表里面的属性,而在select 查询中却查询了card表的属性值,解决办法有2种

方法1:直接将collection集合元素的属性写为collection的子标签

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.longteng.diamond.dao.StudentCardMapper">
<resultMap id="studentCardMap" type="com.longteng.diamond.domain.Student">
<id property="id" column="sid" jdbcType="INTEGER"></id>
<result property="name" column="sname" jdbcType="VARCHAR"></result>
<result property="cid" column="scid" jdbcType="INTEGER"></result>
<!-- 引入CardMapper.xml文件中的映射信息
property表示Student类的关联属性
resultMap表示引入CardMapper.xml文件的映射类型
-->
<collection property="card" ofType="com.longteng.diamond.domain.Card">
<id property="id" column="cid" ></id>
<result property="num" column="cnum" jdbcType="VARCHAR"></result>
</collection>
</resultMap> <select id="selectById" parameterType="java.lang.Integer" resultMap="studentCardMap">
select s.sid,s.sname,s.scid,c.cnum,c.cid
from students s inner join cards c
on s.scid= c.cid and s.sid=#{xx}
</select> </mapper> 

调用接口http://localhost/testMapper执行结果如下:

Student(id=1, name=哈哈, card=Card(id=1, num=111))

方法2:通过在collection标签中引用别的mapper的查询方法

第一步创建CardMapper接口

import com.longteng.diamond.domain.Card;
import org.apache.ibatis.annotations.Mapper; @Mapper
public interface CardMapper {
Card findCard(Integer id);
}

第二步创建CardMapper.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.longteng.diamond.dao.CardMapper">
<resultMap id="cardMapper" type="com.longteng.diamond.domain.Card">
<id property="id" column="cid" jdbcType="INTEGER"></id>
<result property="num" column="cnum" jdbcType="VARCHAR"></result>
</resultMap>
<select id="findCard" resultMap="cardMapper">
SELECT * from cards where cid=#{0};
</select>
</mapper>

第三步在StudentCardMapper.xml文件里面引入CardMapper.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.longteng.diamond.dao.StudentCardMapper">
<resultMap id="studentCardMap" type="com.longteng.diamond.domain.Student">
<id property="id" column="sid" jdbcType="INTEGER"></id>
<result property="name" column="sname" jdbcType="VARCHAR"></result>
<result property="cid" column="scid" jdbcType="INTEGER"></result>
<!-- 方法2:
引入CardMapper.xml文件中的映射信息
property表示Student类的关联属性 -->
<collection property="card" column="scid" jdbcType="INTEGER" select="com.longteng.diamond.dao.CardMapper.findCard"/>
</resultMap> <select id="selectById" parameterType="java.lang.Integer" resultMap="studentCardMap">
select s.sid,s.sname,s.scid,c.cnum,c.cid
from students s inner join cards c
on s.scid= c.cid and s.sid=#{xx}
</select> </mapper>

MyBatis学习总结之一对一映射的更多相关文章

  1. mybatis学习笔记(10)-一对一查询

    mybatis学习笔记(10)-一对一查询 标签: mybatis mybatis学习笔记10-一对一查询 resultType实现 resultMap实现 resultType和resultMap实 ...

  2. mybatis学习笔记(7)-输出映射

    mybatis学习笔记(7)-输出映射 标签: mybatis mybatis学习笔记7-输出映射 resultType 输出简单类型 输出pojo对象和pojo列表 resultMap result ...

  3. 1.4(Mybatis学习笔记)关联映射

    一.一对一 mybatis处理一对一主要通过<resultMap>中的<association>元素来处理. <association>元素主要使用方方式有两种: ...

  4. 【MyBatis学习10】高级映射之多对多查询

    本文来总结一下mybatis中的多对多映射,从第8节的文章中可以看出,用户表和商品表示多对多关系,它们两的多对多是通过订单项和订单明细这两张表所关联起来的,那么这一节主要来总结一下用户表和商品表之间的 ...

  5. 【MyBatis学习06】输入映射和输出映射

    在前面几篇博文的例子中也可以看到mybatis中输入映射和输出映射的身影,但是没有系统的总结一下,这篇博客主要对这两个东东做一个总结.我们知道mybatis中输入映射和输出映射可以是基本数据类型.ha ...

  6. 【MyBatis学习08】高级映射之一对一查询

    从这一篇博文开始,将总结一下mybatis中的几个高级映射,即一对一.一对多.多对多查询,这篇先总结一下mybatis中的一对一查询.  为了模拟这些需求,事先要建立几个表,不同的表之间将对应上面提到 ...

  7. mybatis学习记录六——一对一、一对多和多对多查询

    9       订单商品数据模型 9.1     数据模型分析思路 1.每张表记录的数据内容 分模块对每张表记录的内容进行熟悉,相当 于你学习系统 需求(功能)的过程. 2.每张表重要的字段设置 非空 ...

  8. Mybatis学习(三)————— 映射文件详解

    前面说了全局配置文件中内容的详解,大家应该清楚了,现在来说说这映射文件,这章就对输入映射.输出映射.动态sql这几个知识点进行说明,其中高级映射(一对一,一对多,多对多映射)在下一章进行说明. 一.输 ...

  9. 【MyBatis学习09】高级映射之一对多查询

    上一篇博文总结了一下一对一的映射,本文主要总结一下一对多的映射,从上一篇文章中的映射关系图中可知,订单项和订单明细是一对多的关系,所以本文主要来查询订单表,然后关联订单明细表,这样就有一对多的问题出来 ...

随机推荐

  1. c#学习笔记02——接口

    本身并不实现功能,但提供一种模板定义,为从它继承类或结构提供了一种定义的规范 有了接口,程序员可以把程序定义的更积极啊清晰和条理化 理解接口 接口支持多继承:抽象类不能实现多继承 接口只能定义抽象规则 ...

  2. ZJNU 1538 - YN!ngC的取子游戏--高级

    Nim博弈 因为移动到第0阶会消失 所以可以得到从最后一个人操作必定是把第1阶所有子全部移动到第0阶 递推可得,最后一个能把奇数阶的子移动到偶数阶上的人将会必胜 所以这个必胜条件就是奇数阶上的子全部为 ...

  3. 关于luoguU67856 数列一题

    本题采用累加法 首先这个式子\[a_n = ka_{n-1}+b\]的通项不用我说了吧 然后就是累加法 \[S_n = \sum_{i=1}^{n} a_i = \sum_{i=1}^{n} ka_{ ...

  4. springBoot中mybatis错误之 Property 'configuration' and 'configLocation' can not specified with together 解决

    mybatis.config-location与mybatis.config-locations不同 mybatis.config-location不加载全局配置文件

  5. Rnotebook中用python画图

    如果notebook需要转化为pdf, 能想到办法是保存图片文件,嵌入mardown语法中. 但是如果在html中显示, 可以考虑下面思虑, 比较取巧. ``` {python, engine.pat ...

  6. IntelliJ IDEA 2019.2.2在16GB内存下的性能调优

    开发工具 IntelliJ IDEA 2019.2.2 x64 idea64.exe.vmoptions -m -m -XX:ReservedCodeCacheSize=m -XX:+UseConcM ...

  7. C/C++中开平方函数sqrt()的用法

    开平方使用sqrt()函数 使用方法: 包含于math.h头文件 sqrt(float * number),返回number的开平方数,返回值为浮点型 sqrt使用时大多需要要强制类型转化,因为sqr ...

  8. TPO3-2Depletion of Ogallala Aquifer

    The vast grasslands of the High Plains in the central United States were settled by farmers and ranc ...

  9. [转]Apache漏洞利用与安全加固实例分析

    1.2 Apache文件解析特性 Apache对于文件名的解析是从后往前解析的,直到遇见一个它认识的文件类型为止.因此,如果web目录下存在以类似webshell.php.test这样格式命名的文件, ...

  10. Android 5.0 5.1 webview 闪退问题

    自定义webview /** * 处理Android 5.0 5.1 webview 闪退 */ class MyWebView : WebView { companion object{ priva ...