IDEA中Spring Boot项目MyBaits提示Invalid bound statement (not found)错误

该错误提示没有找到相对应的XML文件,找了很长时间发现在编译后的classes路径下并没有相应的XML文件,这是因为IDEA在编译的时候忽略掉了XML文件

IDEA中Spring Boot项目MyBaits提示Invalid bound statement (not found)错误_第1张图片

解决办法是在pom.xml文件里面加上以下的代码

 <build>
        <resources>
            <resource>
                <directory>src/main/resourecesdirectory>
                <excludes>
                    <exclude>**/*.javaexclude>
                excludes>
                <filtering>truefiltering>
            resource>
        resources>
    build>

这样重新编译后class文件里面就有对应的xml文件包了

你可能感兴趣的:(分布式服务,SpringBoot)