问题记录-A query was run and no Result Maps were found for the Mapped Statement..

问题记录-A query was run and no Result Maps were found for the Mapped Statement..,第1张

问题记录-A query was run and no Result Maps were found for the Mapped Statement.. A query was run and no Result Maps were found for the Mapped Statement…

1.报错信息

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'xxx'.  It's likely that neither a Result Type nor a Result Map was specified.

2.问题分析
由报错信息可知: 很可能既没有指定结果类型, 也没有指定结果映射。
检查mapper.xml文件后, 发现遗漏了里面一个属性resultType=" " 或者 resultMap=" "


    select 
    from discuss_post
    where status != 2
    
        and user_id = #{userId}
    
    order by type desc, create_time desc
    limit #{offset}, #{limit}

MyBatis中在查询进行select映射的时候,返回类型可以用resultType,也可以用resultMap,resultType是直接表示返回类型的,而resultMap则是对外部ResultMap的引用,但是resultType跟resultMap不能同时存在.
(在学习中,有某位老师说: 如果查询sql返回类型是java自带类型,可以自动检测到,那么就可以省略不写这个属性. 呃…个人试了一下会报错,不知道为什么这个老师会这么认为)
3.解决方法
在< select >标签上加上属性resultType=" "即可


在resultType=“DiscussPost”中,DiscussPost就是自定义的POJO,此时可以使用全限定类名 (全限定类名:就是类名全称,带包路径的用点隔开,例如: java.lang.String) 来指定这些POJO的引用.
但这里resultType没写全是因为在配置文件使用mybatis.type-aliases-package来指定POJO扫描包来让mybatis自动扫描到自定义的POJO。

mybatis.type-aliases-package=com.example.demo.entity

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5716282.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存