org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.text.dao.LetterMapper.updateById
时间: 2023-11-01 09:58:13 浏览: 105
MyBatis绑定错误提示BindingException:Invalid bound statement (not found)的解决方法
根据提供的引用内容,"org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.text.dao.LetterMapper.updateById" 这个错误是因为在MyBatis-Plus持久化框架中,找不到与Mapper.java和Mapper.xml的绑定关系导致的。这可能是由于业务调用流转到了Mapper.xml,但是在Mapper.xml中找不到相应的绑定关系。解决这个问题的方法是检查Mapper.java和Mapper.xml的绑定关系是否正确,并确保在Mapper.xml中存在对应的绑定语句。
阅读全文