A query was run and no Result Maps were found for the Mapped Statement ‘******’. It’s likely that ne

A query was run and no Result Maps were found for the Mapped Statement ‘******’. It’s likely that neither a Result Type nor a Result Map was specified解决方法

问题描述

在进行springboot项目的时候,浏览器页面显示405报错
在这里插入图片描述
idea下显示

org.apache.ibatis.executor.ExecutorException:
A query was run and no Result Maps were found for the Mapped Statement
'com.li.Mapper.usernameMapper.queryByName'.  
It's likely that neither a Result Type nor a Result Map was specified.

(二)解决问题

然后百度翻译进行翻译,结果如下

已运行查询,但未找到映射语句“com.li.Mapper.usernameMapper.queryByName”的结果映射。
很可能既没有指定结果类型,也没有指定结果映射。

于是找到了
在这里插入图片描述
内容为:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.li.Mapper.usernameMapper">

    <select id="queryByName"   parameterType="String">
        select password from name where username=#{username}
    </select>

</mapper>

结合上面的翻译仔细观看,原来是 select sql 中缺少resultType

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.li.Mapper.usernameMapper">

    <select id="queryByName" resultType="String" parameterType="String">
        select password from name where username=#{username}
    </select>

</mapper>

再次运行测试,即可成功!!!

(三)分析问题

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值