300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > 【Mybatis框架】输出映射-resultType与resultMap

【Mybatis框架】输出映射-resultType与resultMap

时间:2020-04-20 03:22:47

相关推荐

【Mybatis框架】输出映射-resultType与resultMap

为什么80%的码农都做不了架构师?>>>

输出映射

接下来说说有关Mapper.xml配置文件中查询标签中关于返回值类型resultType与resultMap的一些内容

1.resultType

使用resultType进行输出映射,只有查询出来的列名和pojo中的属性名一致,该列才可以映射成功。

如果查询出来的列名和pojo中的属性名全部不一致,没有创建pojo对象。

只要查询出来的列名和pojo中的属性有一个一致,就会创建pojo对象。

1.1输出简单类型

1.1.1需求

用户信息的综合查询列表总数,通过查询总数和上边用户综合查询列表才可以实现分页。

1.1.2mapper.xml

<mappernamespace="cn.edu.hpu.mybatis.mapper.UserMapper"><!--用户信息综合查询#{UserCustom.sex}取出包装对象中性别值${UserCustom.username}取得pojo包装对象中用户名称--><selectid="findUserList"parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo"resultType="cn.edu.hpu.mybatis.PO.UserCustom">select*fromuserwhereuser.sex=#{userCustom.sex}anduser.usernamelike'%${userCustom.username}%'</select><!--用户信息综合查询总数--><selectid="findUserCount"parameterType="cn.edu.hpu.mybatis.PO.UserQueryVo"resultType="int">selectcount(*)fromuserwhereuser.sex=#{userCustom.sex}anduser.usernamelike'%${userCustom.username}%'</select>......</mapper>

1.1.3mapper.java

//用户管理的Dao接口publicinterfaceUserMapper{//用户信息综合查询publicList<UserCustom>findUserList(UserQueryVouserQueryVo)throwsException;//用户信息综合查询总数publicintfindUserCount(UserQueryVouserQueryVo)throwsException;......}

1.1.4测试代码

//用户信息综合查询总数@TestpublicvoidtestFindUserCount()throwsException{SqlSessionsqlSession=sqlSessionFactory.openSession();//创建UserMapper代理对象UserMapperuserMapper=sqlSession.getMapper(UserMapper.class);//创建包装对象,设置查询条件UserQueryVouserQueryVo=newUserQueryVo();UserCustomuserCustom=newUserCustom();userCustom.setSex("男");userCustom.setUsername("张三");userQueryVo.setUserCustom(userCustom);//调用userMapper的方法intcount=userMapper.findUserCount(userQueryVo);System.out.println("总数为:"+count);}

测试结果:

总数为:2

1.1.5小结

查询出来的结果集只有一行且一列,可以使用简单类型进行输出映射。(输出简单类型的要求)

1.2输出pojo对象和pojo列表

不管是输出的pojo单个对象还是一个列表(list中包括pojo),在mapper.xml中resultType指定的类型是一样的。

在mapper.java指定的方法返回值类型不一样:

(1)输出单个pojo对象,方法返回值是单个对象类型

(2)输出pojo对象list,方法返回值是List<Pojo>

生成的动态代理对象中是根据mapper方法的返回值类型确定是调用selectOne(返回单个对象调用)还是selectList (返回集合对象调用 ).

(3)输出hashmap

输出pojo对象可以改用hashmap输出类型,将输出的字段名称作为map的key,value为字段值。如果是集合,那就是list里面套了HashMap。

2.resultMap

mybatis中使用resultMap完成高级输出结果映射。

2.1resultMap使用方法

如果查询出来的列名和pojo的属性名不一致,通过定义一个resultMap对列名和pojo属性名之间作一个映射关系。

下面来进行实验,实验需求

2.2将下边的sql使用User完成映射

SELECT id id_,username username_ FROM USER WHERE id=#{value}

User类中属性名和上边查询列名不一致。

resultMap使用方法:(一下属性均定义在Mapper.xml映射文件中)

(1)定义resultMap

<!--定义resultType将selectidid_,username_usernamefromuser和User类中的属性做一个映射关系type:resultMap最终所映射的Java对象类型,可以使用别名id:对resultMap的唯一标识--><resultMaptype="user"id="userResultMap"><!--id表示查询结果集中唯一标识column:查询出的列名property:type所指定的POJO中的属性名最终reslutMap对column和property做一个映射关系(对应关系)--><idcolumn="_id"property="id"/><!--对普通列的映射定义--><resultcolumn="_username"property="username"/></resultMap>

(2)使用resultMap作为statement的输出映射类型

<!--使用resultMap进行输出映射resultMap:指定定义的resultMap的id,如果这个resultMap在其它的mapper文件,前面需要加namespace--><selectid="findUserByResultMap"parameterType="int"resultMap="userResultMap">selectid_id,username_usernamefromuserwhereid=#{value}</select>

(3)mapper接口类中添加相应方法

//用户管理的Dao接口publicinterfaceUserMapper{publicUserfindUserByResultMap(intid)throwsException;......}

测试:

@TestpublicvoidtestFindUserByResultMap()throwsException{SqlSessionsqlSession=sqlSessionFactory.openSession();//创建UserMapper代理对象UserMapperuserMapper=sqlSession.getMapper(UserMapper.class);//调用userMapper的方法Useruser=userMapper.findUserByResultMap(1);System.out.println(user.getUsername());}

小结

使用resultType进行输出映射,只有查询出来的列名和pojo中的属性名一致,该列才可以映射成功。

如果查询出来的列名和pojo的属性名不一致,通过定义一个resultMap对列名和pojo属性名之间作一个映射关系。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。