欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

BUG记录: org.apache.ibatis.exceptions.TooManyResultsException

程序员文章站 2022-05-24 11:59:48
...

今天在写程序时出现了这个异常: org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 8

然后自己的代码是这样写的

/**
	 * 查找所有项目id及项目名
	 * @return 所有项目id及项目名
	 */
	Map<String, Object>
	findPrjIdAndNames();
<select id="findPrjIdAndNames" resultType="map">
		select id,name
		from tms_projects
	</select>

此时我的数据库里共有8条数据,经过问题排查,发现函数的返回值类型应当是List<Map<String, Object>>

/**
	 * 查找所有项目id及项目名
	 * @return 所有项目id及项目名
	 */
	List<Map<String, Object>>
	findPrjIdAndNames();