org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the

本文解析了在使用MyBatis框架进行数据库查询时遇到的ExecutorException异常,详细阐述了如何定位问题,检查SQL映射文件中resultType或ResultMap是否正确配置,以及如何修复动态SQL语句中可能存在的错误。
摘要由CSDN通过智能技术生成

所有的错误信息:
在控制台下这个提示为:
org.apache.ibatis.executor。ExecutorException:运行了一个查询,但是没有找到映射语句“com.shiyaxin.dao.IUserDao.findByCondition”的结果映射。很可能既没有指定结果类型,也没有指定结果映射。

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

这个mybatis的查询语句需要一个resultType,这里出错要莫是忘写,要莫是写错了

<!-- mysql中的动态sql语句-->
    <!--根据条件查询-->
    <select id="findByCondition" parameterType="user" resultType="user">
        select * from user where 1=1
        <if test="username != null">
            and username = #{username}
        </if>
<!--        <if test="userSex != null">-->
<!--            and sex = #{sex}-->
<!--        </if>-->
    </select>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值