org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'com.sottop.sokonmobile.sokonmobile.qingdao.dao.mybaits.AsStmTechnologicalItemDao.getDictionary'. It's likely that neither a Result Type nor a Result Map was specified.
时间: 2024-04-26 22:21:05 浏览: 210
Mybatis中的resultType和resultMap查询操作实例详解
5星 · 资源好评率100%
这个错误提示是因为 MyBatis 执行了一个查询语句,但是没有找到相应的结果映射。这通常是由于未指定查询语句的返回结果类型或者结果映射导致的。你可以检查一下对应的 Mapper XML 文件或者 Java 接口中是否正确指定了查询语句的返回结果类型或者结果映射。如果还有问题,可以提供更多的代码和错误信息以便更好地帮助你解决问题。
阅读全文