MyBatis使用<foreach>标签报错问题及解决
背景
在使用mybatis
过程中,<foreach>
标签算是比较常用的,最近在项目中遇到这样一个问题,使用<foreach>
标签循环拼接SQL
语句时
报了一个错误:
nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘__frch_name_0’ in ‘class com.stand.modules.address.param.GeneralAddressQueryParam’
比较疑惑,这个标签使用了很多次了,还是第一次遇到这样的问题,通过查阅资料,得到了解决方案。
原因
首先贴出涉及到的实体类、Mapper
接口和对应的XML
部分代码
- 用于
Mapper
接口传参的实体类:
public class GeneralAddressQueryParam implements Serializable { /** * 地名,多级地名用逗号分隔 */ private String names; /** * 多地名查询条件 */ private List<String> nameList; public String getNames() { return names; } public void setNames(String names) { this.names = names; } public List<String> getNameList() { return nameList; } public void setNameList(List<String> nameList) { this.nameList = nameList; } }
Mapper
接口
List<GeneralAddressFullNameDTO> multiNameQuery(GeneralAddressQueryParam queryParam);
XML
部分代码
<if test="nameList != null and nameList.size() > 0"> <foreach collection="nameList" item="name"> and address like concat('%', #{name}, '%') </foreach> </if>
以上就是问题涉及到的部分代码,
出错的原因呢,就是在<foreach>
标签中取值出的错,
网上查阅资料说是因为parameterType
接收的参数不是List
导致的,具体情况未核实。
解决方案
解决方法比较简单,或一种取值方式即可
将<foreach>
标签中遍历出来的值换做如下方式获取
<if test="nameList != null and nameList.size() > 0"> <foreach collection="nameList" item="name" index="index"> and address like concat('%', #{nameList[${index}]}, '%') </foreach> </if>
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
完美解决java.lang.OutOfMemoryError处理错误的问题
下面小编就为大家带来一篇完美解决java.lang.OutOfMemoryError处理错误的问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-01-01
最新评论