在写javaweb获取列表名的时候,突然报错
org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 5
原因是在mapper数据库查询的时候 我返回的对象只是放回了一个对象,而查询出来的是多个
报错原因:
解决方法
因为是多个所以要用集合泛型
在写javaweb获取列表名的时候,突然报错
org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 5
原因是在mapper数据库查询的时候 我返回的对象只是放回了一个对象,而查询出来的是多个
报错原因:
解决方法
因为是多个所以要用集合泛型