springboot整合mybatis时查询数据库后返回值问题

查询数据库的表中的一个varchar字段时,

img

如图,我的返回类型resultType设置为string,

service也是用string

img

但是

img

却报错

resultType和resultMap,先学习搞清楚吧!

resultType:MyBatis会将Map里面的键值对取出赋给resultType所指定的对象对应的属性;
resultMap:通常需要在mapper.xml中定义resultMap进行pojo和相应表字段的对应;

两个不能同时使用的……

把resultMap去掉

resultMap去掉看看

img