Invalid bound statement (not found):报错解决方法

报错信息:

 Invalid bound statement (not found): com.atguigu.auth.mapper.SysMenuMapper.findMenuListByUserId 

因为:maven加载机制

maven默认情况下,只会加载编译ser-main-java目录里面java类型文件,其他类型文件不会进行加载

 

解决方法:

1、吧xml文件放到resources目录下面

2、通过配置方式进行加载

1、在pom.xml



    
        src/main/java
        
            **/*.yml
            **/*.properties
            **/*.xml
        
        false
    
    
        src/main/resources
        
            **/*.yml
            **/*.properties
            **/*.xml
        
        false
    

Invalid bound statement (not found):报错解决方法_第1张图片

 

2、项目配置文件添加

mybatis-plus:
  mapper-locations: classpath:com/atguigu/auth/mapper/xml/*.xml # 加载xml文件

Invalid bound statement (not found):报错解决方法_第2张图片

你可能感兴趣的:(java,mybatis,intellij-idea,java)