org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
idea与eclipse不同,***Mapper.xml需要放在resources目录下才可以解析,但是如果像下图这种布局,需要在pom文件下添加
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>