mybatis报错:org.apache.ibatis.executor.ExecutorException:A query was run and no Result Maps were found for the Mapped Statement ‘com.uranus.mapper.StudentMapper.SelectStuAll’. It’s likely that neither a Result Type nor a Result Map was specified.)
今天学习MyBatis的时候,查询学生的全部信息,出现了以下的错误
A query was run and no Result Maps were found for the Mapped Statement ‘com.uranus.mapper.StudentMapper.SelectStuAll’. It’s likely that neither a Result Type nor a Result Map was specified.
翻译的结果就是:很可能既没有指定结果类型,也没有指定结果映射。
以下是我的源代码
<select id="SelectStuAll&#