Mybatis 查询返回List<String>集合

2023-03-27 15:39:47

一、错误写法,如下:

1、在dao.xml文件中返回值定义为 resultType=“java.util.List” 。

在这里插入图片描述
2、dao层会报错,提示Result type not match…
在这里插入图片描述

二、正确写法

1、在dao.xml文件中返回值定义为 resultType=“java.lang.String” 。

在这里插入图片描述
2、dao层报错消失

在这里插入图片描述

三、报错原因

  • resultType是sql映射文件中定义返回值类型,返回值有基本类型,对象类型,List类型,Map类型等。
  • 返回List集合时,需要将resultType的值定义为集合中元素类型,而不是返回集合本身。
  • 作者:小志的博客
  • 原文链接:https://wwwxz.blog.csdn.net/article/details/117352771
    更新时间:2023-03-27 15:39:47