Mybatis 中的 <ResoutMap> 参数顺序问题

报错信息

  • The content of element type "resultMap" must match "(constructor?,id,result,association,collection,discriminator?)".

报错原因ResoutMap参数顺序不匹配

  • association 标签与 collection 标签 顺序颠倒了。

image

ResoutMap标签的参数正确顺序

  • <association> 必须放在 <collection> 标签前面
  • constructor?,
  • id*,
  • result*,
  • association*,
  • collection*,
  • discriminator?
posted @ 2022-09-05 13:13  TrumanPan  阅读(56)  评论(0编辑  收藏  举报