BindingException: Invalid bound statement (not found): 没有找到绑定语句
作者:互联网
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.atguigu.eduucenter.mapper.UcenterMemberMapper.XXXX
没有找到绑定语句
直接在对应的项目的Pom文件中 添加需要构建的xml
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
标签:xml,BindingException,bound,Invalid,statement,found 来源: https://blog.csdn.net/qq_42923605/article/details/121886018