码迷,mamicode.com
首页 > 移动开发 > 详细

A query was run and no Result Maps were found for the Mapped Statement

时间:2017-09-15 12:08:40      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:a query was run and no result maps were found for the mapped statement

Cause: org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement ‘com.shadow.foretaste.UserInfoDao.getPhoneNum‘.  It‘s likely that neither a Result Type nor a Result Map was specified.

导致这个错误的原因是:

mapper.xml中没有指定返回值类型

<select id="getPhoneNum" >
        select phone_num from user_info where id = #{id}
</select>

修改后:

<select id="getPhoneNum" resultType="String">
        select phone_num  from user_info where id = #{id}
</select>


本文出自 “数据挖掘工程师的成长历程” 博客,请务必保留此出处http://qianqiansun.blog.51cto.com/13271301/1965502

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

原文地址:http://qianqiansun.blog.51cto.com/13271301/1965502

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!