使用mybatis-plus报错Invalid bound statement (not found)错误

近期使用Springboot集成Mybatisplus,执行insert时一直报错,提示错误如下:
Invalid bound statement (not found): xx.insert
mapper继承BaseMapper:

使用mybatis-plus报错Invalid bound statement (not found)错误_第1张图片

BaseMapper有insert方法如下:

使用mybatis-plus报错Invalid bound statement (not found)错误_第2张图片

service调用mapper.insert(对象)报错

使用mybatis-plus报错Invalid bound statement (not found)错误_第3张图片

某度查找资料均不能解决问题,最终经查阅官方文档比对得知是缺少jar包导致。在pom.xml中引入:


      com.baomidou
      mybatis-plus-boot-starter
      3.1.2
    
    
      com.baomidou
      mybatis-plus-annotation
      3.1.2
    
    
      com.baomidou
      mybatis-plus-extension
      3.1.2
    

附官方文档:
https://baomidou.com/guide/faq.html

到此这篇关于使用mybatis-plus报错Invalid bound statement (not found)错误的文章就介绍到这了,更多相关mybatis-plus报错not found内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(使用mybatis-plus报错Invalid bound statement (not found)错误)