出现如上错误,

原因: 在mybatis使用<foreach>标签的时候 , collection 为传入的List item为里面的对象,如果直接对item取值就会出现如此错误。

解决:对item进行取值

------------------------------------------------------

<foreach collection="param" index="index" item="l" open="("separator="OR" close=")">
             id= #{id}    错误写法

             id=#{l.id}    正确写法
</foreach>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐