Mybatis错误记录
正确:
<select id="getStudent" resultType="com.demo.pojo.Student">
select * from student
</select>
错误
<select id="getStudent" resultType="com.demo.dao.SturentMapper">
select * from student
</select>
很明显的返回实体类型错误
正确:
<select id="getStudent" resultType="com.demo.pojo.Student">
select * from student
</select>
错误
<select id="getStudent" resultType="com.demo.dao.SturentMapper">
select * from student
</select>
很明显的返回实体类型错误