就國內來講項目中mybatis使用的較多,由於方便靈活,上手快,會寫sql就能用好mybatis,另外sql優化等簡單易作,遇到慢sql了比hibernate更好排查。除了一大痛點,由於項目短平快,因此開發過程當中大機率會出現發現某個表要加字段要刪字段要改字段等頭疼的事,你覺得我會說,這麼麻煩不想調麼,不,不存在的。
言歸正傳,在查詢裏使用子查詢是比較頻繁的。這文章的下半部分就是要解決子查詢一個對象,一個對象列表的問題,而且子查詢中的條件除了關聯字段還有其餘的參數須要傳入。
本示例中要查詢的表結構以下:java
create table if not exists tb_station( id bigint not null constraint pk_tb_station primary key, code varchar(18), geo_id bigint, //分組id label_id bigint, // 標牌id employee_id bigint, //員工id status integer ); 須要獲取的結果對象爲 public class StationVO { private Long id;//主鍵 private String code;//工位編號 private Long stationGeoId;//StationGeoVO,所屬工位分區對象 private Long labelId;//工位綁定的標牌id private String labelCode;//標牌code private String eslCode;//標牌eslcode private EmployeeVO employee;//EmployeeVO,分配的員工對象 private String status;//工位狀態(0:空閒,1:正在使用) private List<Biz> bizList;//工位分組推送vo } biz對象說明:biz對象對應的表裏有一個geo_id字段進行關聯
此處的需求是要根據分組id(即geoId)查詢stationVO對象sql
mybatis中對應的映射及代碼以下:mybatis
<resultMap id="StationVOResultMap" type="org.sit.cto.smmrepository.vo.StationVO"> <id column="id" jdbcType="BIGINT" property="id" /> <result column="code" jdbcType="VARCHAR" property="code" /> <result column="status" jdbcType="INTEGER" property="status" /> <result column="label_id" jdbcType="BIGINT" property="labelId" /> <result column="esl_code1" jdbcType="VARCHAR" property="eslCode" /> <result column="lcode" jdbcType="VARCHAR" property="labelCode" /> <result column="geo_id" jdbcType="BIGINT" property="stationGeoId" /> <association property="employee" column="employee_id" select="selectEmployeeByEmployeeId"/> <collection property="bizList" column="{geoId=geo_id,eslCode=esl_code1}" ofType="map" select="selectBizVOByStationId"/> </resultMap> <resultMap id="EmployeeResultMap" type="org.sit.cto.smmrepository.model.Employee"> <id column="id" jdbcType="BIGINT" property="id" /> <result column="code" jdbcType="VARCHAR" property="code" /> <result column="real_name" jdbcType="VARCHAR" property="realName" /> <result column="company" jdbcType="VARCHAR" property="company" /> <result column="dept_name" jdbcType="VARCHAR" property="deptName" /> <result column="position" jdbcType="VARCHAR" property="position" /> <result column="phone" jdbcType="VARCHAR" property="phone" /> <result column="status" jdbcType="INTEGER" property="status" /> </resultMap> <resultMap id="BizVOResultMap" type="org.sit.cto.smmrepository.vo.BizVO"> <result column="esl_code" jdbcType="VARCHAR" property="eslCode" /> <result column="temp_id" jdbcType="BIGINT" property="labelTempId" /> <result column="key" jdbcType="VARCHAR" property="key" /> <result column="value" jdbcType="VARCHAR" property="value" /> </resultMap> <select id="selectEmployeeByEmployeeId" resultMap="EmployeeResultMap"> select id, code, real_name, company, dept_name, position, phone, status from tb_employee where id=#{employeeId} </select> <select id="selectBizVOByStationId" parameterType="java.util.Map" resultMap="BizVOResultMap"> select esl_code, temp_id, key, value from tb_biz where associated_id=#{geoId} and esl_code=#{eslCode} and biz_type=2 </select> <select id="getStationVOListByGeoId" resultMap="StationVOResultMap"> SELECT ts.ID, ts.code, ts.geo_id, ts.label_id, ts.employee_id, ts.status, tl.code lcode, tl.esl_code1 FROM tb_station ts LEFT JOIN tb_label tl ON ts.label_id = tl.ID WHERE ts.geo_id =#{geoId} ORDER BY ts.code </select>
子查詢獲取一個關聯對象
例子中的employee優化
<association property="employee" column="employee_id" select="selectEmployeeByEmployeeId"/> 子查詢對象,標籤使用 <association /> property的內容對應目標對象中的屬性名 column對應表中的關聯字段的名字 select對應獲取關聯對象子查詢的查詢名
子查詢獲取一個關聯對象的集合
示例中Biz對象的集合hibernate
<collection property="bizList" column="{geoId=geo_id,eslCode=esl_code1}" ofType="map" select="selectBizVOByStationId"/> 子查詢,標籤使用<collection /> property的內容對應目標對象中的屬性名 column對應表中的關聯字段的名字 select對應獲取對象子查詢的查詢名 ofType 此處子查詢須要傳入其餘參數,故用map傳入,若無其餘參數則該標籤中不須要此屬性,column處直接填寫關聯字段名(如column="geo_id") 須要傳入其餘參數時,寫法如上例,在對應的子查詢的#{}佔位符處須要與該map中的key對應
規範定義好resultmap,能讓sql更有條理更美觀code