MyBatis查询结果集,返回List的对象集合
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
MyBatis查询结果集,返回List的对象集合MyBatis查询结果集,返回List的对象集合
TestMapper(springBoot放在resources下mapper⽬录下)
<mapper namespace="com.baosight.dao.TestMapper">
<resultMap id="resultListTimeRange" type="com.baosight.pojo.TimeRange">
<id column="F1ON" property="F1ON" />
<id column="F1OFF" property="F1OFF" />
</resultMap>
<select id="query" resultMap="resultListTimeRange">
select F1ON,F1OFF from ap.SCC_FMSTRIP fetch first 2 rows only
</select>
</mapper>
application.properties
#mybatis
mybatis.typeAliasesPackage=com.baosight.pojo
mybatis.mapperLocations=classpath:mapper/*.xml
mybatis.configuration.mapUnderscoreToCamelCase=true
mybatis.configuration.cacheEnabled=false
.baosight.service.AP.dao=debug
各类请求和返回数据类型
${unit}=DC 没有引号
#{coilId}='002641870100'
parameterType="hashmap"
<update id="updateIFREAD_UNITStatus_SENDCHECK" parameterType="hashmap">
update AP.SENDCHECK_LEN
SET ${unit}=1
WHERE PIECENO=#{coilId}
</update>
resultType="integer" parameterType="string"
<select id="queryIFREAD_R1_SENDCHECK" resultType="integer" parameterType="string">
select IFREAD_R1
from AP.SENDCHECK_LEN
WHERE PIECENO=#{coilId}
</select>。