1、mapper 代码里面的名字和 mapper.xml 的名字不匹配
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.aspirecn.dorisdb.mapper.TableMapper.updateTable
原因:这个时候,接口mapper写的是 updateTable, 但mapper.xml写提 "update", 就会报这个错。
1、mapper 代码里面的名字和 mapper.xml 的名字不匹配
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.aspirecn.dorisdb.mapper.TableMapper.updateTable
原因:这个时候,接口mapper写的是 updateTable, 但mapper.xml写提 "update", 就会报这个错。