Invalid bound statement (not found)

Invalid bound statement (not found),第1张

Invalid bound statement (not found)

项目中创建mapper接口,编写xml文件sql语句,执行出现错误
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.atguigu.eduservice.mapper.EduCourseMapper.getPublishCourseInfo

开发中出现Invalid bound statement (not found)无外乎两种错误:
1.mapper中的方法名和xml中id名不一致
2.maven默认加载机制造成问题,maven加载的时候,把java文件夹里面.java类型文件进行编译,如果其他类型文件,不会加载,如xml

三种解决方式:

  • 复制xml到target目录中
  • 把xml文件放到resources目录中
  • 通过配置实现(推荐):
1.pom.xml

    
        
            src/main/java
            
                **/*.xml
            
            false
        
    

2.项目application.properties
#配置mapper xml文件的路径
mybatis-plus.mapper-locations=classpath:com/guli/edu/mapper/xml/*.xml

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4660759.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-06
下一篇 2022-11-06

发表评论

登录后才能评论

评论列表(0条)

保存