1.mybatis
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.i7i8i9.base1.mapper.SysUserMapper.queryList
原因:yml配置错误
错误配置:
#数mybatis
mybatis:
mapper-locations:
classpath: /mapper/*.xml
正确配置:
mybatis:
mapper-locations: classpath:/mapper/*.xml