解决Parameter ‘xxxList‘ not found. Available parameters are [arg0,Collection,list]

在这里插入图片描述
当有多个参数时不能直接传入List,要用注解将参数传进去

原代码

List findTagsByTagIds(List tagIds);

修改后代码

List findTagsByTagIds(@Param("tagIds") List tagIds);

问题解决!

你可能感兴趣的:(java)