는지 검dservice 문에서 for 문을 돌려 받은 map list 를 Dao로 보내 어 이런 데이터 값을 받았습니다. [{orderProductQty=3, productCd=4}, {orderProductQty=2, productCd=1}] . 여기서 이 데이터 값이 mybatis에서 update가 되지 않고 있습니다. foreach 문을 다양한 방법으로 변경 해 보았으나
1, <foreach collection="list" item="productMap" separator=";">
2,<foreach collection="list" item="productMap" separator=";" open="" close="">
3. <foreach collection="list" item="productMap" separator=";" close=";">
4, <foreach collection="list" item="productMap" separator=",">
5. <foreach collection="list" item="productMap" separator=";" open=";" close=";">
모두 같은 에러의 연속이네요. 이거 어떻게 해결 할 수 있을까요? 도와 주시면 너무너무 감사드립니다.