美文网首页
It's likely that neither a Resul

It's likely that neither a Resul

作者: 森森deHOME | 来源:发表于2020-07-09 10:58 被阅读0次

    1.报错问题

    It's likely that neither a Result Type nor a Result Map was specified
    

    2.错误原因:mybatis配置文件中没有返回类型参数

      <select id="getList">
            select id,
            content,
            create_time,
            update_time
            from content
        </select>
    

    3.解决办法

    添加resultType参数值

       <select id="getList" resultType="com.example.demo.service.content.vo.ContentVO">
            select id,
            content,
            create_time,
            update_time
            from content
        </select>
    

    相关文章

      网友评论

          本文标题:It's likely that neither a Resul

          本文链接:https://www.haomeiwen.com/subject/jfejcktx.html