위의 에러 발생의 경우이다.
<if test="list !='' and list !=null">
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.value}
</foreach>
</if>
list 의 경우는 != '' 와 비교가 안되서 발생하는 에러이다.
<if test="list.size != 0">
<foreach collection="list" item="item" index="index" separator="," open="(" close=")">
#{item.value}
</foreach>
</if>
다음과 변경할 경우에 에러가 사라진다.
'framework > spring' 카테고리의 다른 글
스프링 PSA (0) | 2020.08.26 |
---|---|
lombok (0) | 2020.08.25 |
싱글톤 - 더블 체크드 락킹(Double Checking Locking) (0) | 2020.08.06 |
즉시로딩과 지연로딩 (0) | 2020.08.03 |
스프링 filter와 interceptor의 차이 (0) | 2020.07.24 |