今天启动项目的时候报错了一个mybatis xml的错误,记录一下,完整的日志
org.apache.ibatis.builder.IncompleteElementException: Could not find SQL statement to include with refid 'com.newwebla.user.mapper.RoleMapper.Base_Column_List'
这里其实是发现了一个很基础的错误,可以从日志的提示看出来错误的地方
‘com.newwebla.user.mapper.RoleMapper.Base_Column_List’
进入这个 RoleMapper.xml文件中可以找到没有Base_Column_List
少了这个,解决方法加上所要查询的字段,或者直接去掉填写所要查询的字段就好了。