mybatis: A query was run and no Result Maps were found for the Mapped Statement .......

mybatis: A query was run and no Result Maps were found for the Mapped Statement .......,第1张

### Cause: org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'com.mypro.mapper.bossMapper.queryBywkid'.  It's likely that neither a Result Type nor a Result Map was specified.
	at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:153)
	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:145)
	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:140)
	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectOne(DefaultSqlSession.java:76)
	at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:87)
	at org.apache.ibatis.binding.MapperProxy$PlainMethodInvoker.invoke(MapperProxy.java:145)
	at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:86)

这是昨天错的问题,但是今天才解决,原因是想改MySQL默认存储路径的时候把mybatis搞的用不了了,弄了好久才搞好。

说下这个问题吧,出现这个问题是因为我在这个resultMap中的collection中调用了另一个bossMapper中的方法,起初我根据报错的信息去搜索原因,得到的结果是说:

select中没有设置resultmap或者resulttype,然后我找的是workermapper中的queryBybsid方法,然后发现那个方法中我加了resultmap,没有出现少的情况。然后我还检查了workermapper中的其他几个方法,发现也没问题,直到我今天仔细看,才发现我应该要注意的是bossmapper中的

queryBywkid这个方法。。。。。。    六个点已经不能表达我的无语了

 这个是缺少了resultmap的方法。大家写代码的时候一定要细心!!!

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/797847.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存