Mybatis ResultMap多表映射DTO

旧城冷巷雨未停 提交于 2020-10-24 12:26:37

步骤:
1:构建DT

package com.steak.system.pojo.dto;

public class ApplyDTO {
    private Integer applyId; //申请书的ID 属于申请表(sys_apply)
    private String selfIntroduction; //自我介绍 属于申请表(sys_apply)
    private String applyTime; //申请时间 属于申请表(sys_apply)
    private String userName; //申请人,属于用户表(sys_user)
    private String collegeName; //二级学院名称,属于二级学院表(sys_college)
    private String recruitName; //招聘书标题 , 属于招聘表(sys_recruit)
    private String status; //申请状态 属于申请表(sys_apply
}

2:创建mybatis Mapper.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.steak.system.mapper.ApplyDOMapper">
    <resultMap id="ApplyDTO" type="com.steak.system.pojo.dto.ApplyDTO">
        <id column="apply_id" jdbcType="INTEGER" property="applyId" />
        <result column="self_introduction" jdbcType="VARCHAR" property="selfIntroduction" />
        <result column="user_name" jdbcType="VARCHAR" property="userName" />
        <result column="apply_time" jdbcType="TIMESTAMP" property="applyTime" />
        <result column="college_name" jdbcType="VARCHAR" property="collegeName" />
        <result column="status" jdbcType="INTEGER" property="status" />
        <result column="recruit_name" jdbcType="VARCHAR" property="recruitName" />
    </resultMap>

    <select id="getApplyDTO" parameterType="java.lang.String" resultMap="ApplyDTO">
        select a.apply_id,a.self_introduction,a.apply_time,u.user_name,c.college_name,a.status,r.recruit_name
        from sys_recruit r,sys_apply a,sys_user u,sys_college c
        where a.recruit_id = r.recruit_id and a.apply_people_id = u.user_id and r.apply_depatment = c.college_id
        and release_people_id = #{userId,jdbcType=VARCHAR}
    </select>
</mapper>

创建接口Mapper

List<ApplyDTO> getApplyDTO(String userId);

实体之间的转换(少写代码)

如:我封装的DTO里面有一个字段int类型的字段status,一般在数据库里面我们用数字来表示,但是返回前台我们应该用一个别人能够理解的字段来表示(如待审核,已审核),由此我们需要定义一个VO(返回前端的模型,里面的字段要和DTO里面所要转换的的字段相同,注意,是需要转换的,我也可以在VO里面定义其他的,DTO转换的时候只转换VO里面和自己对应的),然后通过set方式将值转换到VO里面,数据字段少其实可以手动set,如果有50个字段,一个字段一个字段的去set(实际上我只需要转换一个status字段就OK,当然也可以交给前端来处理,但是有时候前端并不知道代表什么,所以我们尽量给前端解析好,别人就不用去猜测了),费力费时,代码还不优雅,所以推荐使用一些实体的转换工具,我使用的是Apache的BeanUtils,里面有转换的方法,如我将DTO转换为VO,如下便可

BeanUtils.copyProperties(VO,DTO);

这样的话我就将所有数据转到VO里面了,我们在VO里面的status字段设置为String,然后取DTO里面的status字段出来进行语义化成一个可理解的字段,为什么不取VO里面的,要取DTO呢,前面已经说了只能转换和自己对应的,因为DTO里面的status为int类型,而VO里面的status为String,所以转过来VO里面的status为null,所以需要取DTO里面的status,然后赋值给VO里面的status,如:1=待审核 2=已审核

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!