Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): my.mapper.UserInfoMapper.findUserInfoByCond
解决方案:
pom.xml添加
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/mapper/*Mapper.xml</include>
</includes>
</resource>
</resources>