使用SpringBoot+MyBaits组合,运行代码出现如下异常

org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)

我的mapper文件放置如下
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)_java

需要再pom.xml中增加以下配置

<build>
    <resources>
        <!--编译src/main/java目录下的xml文件-->
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml</include>
            </includes>
            <filtering>true</filtering>
        </resource>
    </resources>
</build>