mybaits十三:使用collection分布查询
生活随笔
收集整理的這篇文章主要介紹了
mybaits十三:使用collection分布查询
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?DepartmentMapper.xml的sql配置文件
<resultMap type="com.atChina.bean.Department" id="defineDeptStep"><id column="deptno" property="deptno"/><result column="dname" property="dname"/><result column="loc" property="loc"/><collection property="emps" select="com.atChina.dao.EmployeePlusMapper.getEmpsByDep"column="{deptno}"></collection></resultMap><select id="getDepartByDeptnoStep" resultMap="defineDeptStep">select * from depttest a where a.deptno = #{deptno}</select>EmployeePlusMapper.xml的sql配置文件
<select id="getEmpsByDep" resultType="com.atChina.bean.Employee">select *from emptest a where a.deptno = #{deptno}</select>?
參數傳遞多列
如果將多列的值傳遞過去,可以將多列的值封裝map傳遞
? ? ? ? ? ? ? column="{key1=column1, key2=column2}"
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的mybaits十三:使用collection分布查询的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mybaits十二:使用collecti
- 下一篇: mybaits十四:使用if和where