Mybatis返回Xml返回值有resultType和resultMap,我们一般都该如何选择呢?
当使用resultType做SQL语句返回结果类型处理时,对于SQL语句查询出的字段在相应的pojo中必须有和它相同的字段对应,而resultType中的内容就是pojo在本项目中的位置。
(1)t_user_test.sql准备
CREATE TABLE `t_user_test` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`user_name` varchar(60) DEFAULT NULL COMMENT '用户名称',
`real_name` varchar(60) DEFAULT NULL COMMENT '真实名称',
`sex` tinyint(3) DEFAULT NULL COMMENT '姓名',
`mobile` varchar(20) DEFAULT NULL COMMENT '电话',
`email` varchar(60) DEFAULT NULL COMMENT '邮箱',
`note` varchar(200) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=142 DEFAULT CHARSET=utf8;
(2)实体类
package com.enjoylearning.mybatis.entity;
import java.io.Serializable;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.mysql.jdbc.Blob;
public class TUser implements Serializable{
private Integer id;
private String userName;
private String realName;
private Byte sex;
private String mobile;
private String email;
private String note;
private TPosition position;
private List jobs ;
private List healthReports;
private List roles;
@Override
public String toString() {
String positionId= (position == null ? "" : String.valueOf(position.getId()));
return "TUser [id=" + id + ", userName=" + userName + ", realName="
+ realName + ", sex=" + sex + ", mobile=" + mobile + ", email="
+ email + ", note=" + note + ", positionId=" + positionId + "]";
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public Byte getSex() {
return sex;
}
public void setSex(Byte sex) {
this.sex = sex;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public TPosition getPosition() {
return position;
}
public void setPosition(TPosition position) {
this.position = position;
}
public List getJobs() {
return jobs;
}
public void setJobs(List jobs) {
this.jobs = jobs;
}
public List getHealthReports() {
return healthReports;
}
public void setHealthReports(List healthReports) {
this.healthReports = healthReports;
}
public List getRoles() {
return roles;
}
public void setRoles(List roles) {
this.roles = roles;
}
}
(3)Mapper接口类
public interface TUserTestMapper {
TUser selectByPrimaryKey(Integer id);
List selectAll();
}
(4)Mapper xml
(5)配置文件
(6)启动测试类
public class MybatisDemo2 {
private SqlSessionFactory sqlSessionFactory;
@Before
public void init() throws IOException {
//--------------------第一阶段---------------------------
// 1.读取mybatis配置文件创SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 1.读取mybatis配置文件创SqlSessionFactory
sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
inputStream.close();
}
@Test
//知识点:resultType
public void testAutoMapping() throws IOException {
// 2.获取sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 3.获取对应mapper
TUserTestMapper mapper = sqlSession.getMapper(TUserTestMapper.class);
// 4.执行查询语句并返回多条数据
List users = mapper.selectAll();
for (TUser tUser : users) {
System.out.println(tUser);
}
}
}
(7)执行结果
sql语句:“com.mysql.jdbc.JDBC4PreparedStatement@654f0d9c: select
id, user_name, real_name, sex, mobile, email, note
from t_user_test”执行时间为:35毫秒,已经超过阈值!
TUser [id=1, userName=zhangsan, realName=张三, sex=1, mobile=186995587411, [email protected], note=zhangsan的备注, positionId=]
TUser [id=2, userName=lisi, realName=李四, sex=1, mobile=18677885200, [email protected], note=lisi的备注, positionId=]
TUser [id=3, userName=wangwu, realName=王五, sex=2, mobile=18695988747, [email protected], note=wangwu's note, positionId=]
resultType当返基本类型的时候建议选择,当返回POJO类的时候由于需要完全和数据库字段进行对应,存在不灵活、问题排查难等问题。
resultMap 元素是 MyBatis 中最重要最强大的元素。它可以让你从 90% 的 JDBC ResultSets 数据提取代码中解放出来,在对复杂语句进行联合映射的时候,它很可能可以代替数千行的同等功能的代码。ResultMap 的设计思想是,简单的语句不需要明确的结果映射,而复杂一点的语句只需要描述它们的关系就行了。
实体类,配置文件同上
(1)mapper接口
public interface TUserMapper {
List selectTestResultMap();
}
(2)Mapper.xml
(3)启动测试
public class MybatisDemo2 {
private SqlSessionFactory sqlSessionFactory;
@Before
public void init() throws IOException {
//--------------------第一阶段---------------------------
// 1.读取mybatis配置文件创SqlSessionFactory
String resource = "mybatis-config.xml";
InputStream inputStream = Resources.getResourceAsStream(resource);
// 1.读取mybatis配置文件创SqlSessionFactory
sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
inputStream.close();
}
@Test
public void testResultMap() throws IOException {
//--------------------第二阶段---------------------------
// 2.获取sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
// 3.获取对应mapper
TUserMapper mapper = sqlSession.getMapper(TUserMapper.class);
//--------------------第三阶段---------------------------
// 4.执行查询语句并返回单条数据
List users = mapper.selectTestResultMap();
for (TUser tUser : users) {
System.out.println(tUser.getUserName());
System.out.println(tUser.getPosition().getPostName());
}
}
}
(4)执行结果
sql语句:“com.mysql.jdbc.JDBC4PreparedStatement@19bb07ed: select
a.id,
userName,
realName,
sex,
mobile,
email,
a.note,
b.id post_id,
b.post_name,
b.note post_note
from t_user a,
t_position b
where a.position_id = b.id”执行时间为:52毫秒,已经超过阈值!
zhangsan
总经理
lisi
零时工
wangwu
总经理
当返回对象为基础类型时建议走resultType,当返回对象为POJO时,强制走resultMap。同时可以参考阿里巴巴JAVA开发手册中的5.4.3节,返回要解耦,不讷讷更直接使用resultClass。
作者:Dark_King_
原文链接:
https://blog.csdn.net/b379685397/article/details/114265301