报错Mapped Statements collection does not contain value for com.atguigu.mybatis.dao.EmployeeMapperPlus

报错Mapped Statements collection does not contain value for com.atguigu.mybatis.dao.EmployeeMapperPlus

我报错的原因就是select属性值写错了,写成这样了。

select="com.atguigu.mybatis.dao.EmployeeMapperPlus"

应该写成这样

select="com.atguigu.mybatis.dao.EmployeeMapperPlus.getEmpsByDeptId"