使用springboot整合mybatis时报错 Invalid bound statement (not found)

springboot整合mybatis报如如下错误 Invalid bound statement (not found)

使用springboot整合mybatis时报错 Invalid bound statement (not found)_第1张图片
解决方式,再pom的build里面加入一下任容

<resources>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml
            
        
        
            src/main/resources
        

如果没有以上代码mapper映射无法编译到target目录下,自然出错

注意:如果还无法解决,查看启动类是否加了MapperScan注解,或查看mapper映射的命名空间是否正确

你可能感兴趣的:(javaEE)