mybatis返回list<String>类型数据
studends表里一条teacher_id 数据对应多条 student_id数据,所以通过teacher_id 查询出来的student_id 是一个List。
mybatis代码如下:
1
2
3
4
5
6
7
8
9
10
|
//返回类型是String类型的student_id < resultMap id = "studentIdResult" type = "java.lang.String" > < result column = "student_id" property = "studentId" jdbcType = "VARCHAR" /> </ resultMap > //入参类型(parameterType)是String类型 teacherId < select id = "getStudentsByTeacherId" resultMap = "studentIdResult" parameterType = "java.lang.String" > select student_id from student where teacher_id = #{id,jdbcType=VARCHAR} </ select > |
mybatis返回list<String>时resultType写String
查询出的结果可能有好多条记录,返回类型即是list。但resultType还是写成resultType="user"(user为集合list中的实体类),而不是写成resultType="java.util.List"
mybatis返回list<String>时resultType写java.lang.String而不是java.util.List
如果写成java.util.List时会报错
error querying database.the error occurred while handling results.
resultType也不能写成java.util.HashMap否则会返回[{"abcde"},{"fghilmn"},{"opqrst"}]
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/cuimingjia0524/article/details/78755102