报错日志:
解决问题:
***<if test=" ">***
AND T1.xxx_code in
<foreach item="pollCode" collection="vo.pollCodeList" open="(" separator="," close=")">
#{pollCode}
</foreach>
</if>
经排查我这边遇到的问题是if test=" "为空导致的,正常应该if test=“vo.pollCodeList != null and vo.pollCodeList.size() >0”。
总结:该问题一般都是mapper.xml文件中sql哪里写的有问题所致,仔细排查。