반응형
1. java
List> list = new ArrayList>();
Map tmp = new HashMap();
tmp.put("code1", "A");
tmp.put("desc1", "A");
list.add(tmp);
tmp = new HashMap();
tmp.put("code1", "B");
tmp.put("desc1", "B");
list.add(tmp);
Map param = new HashMap();
param.put("codeList", list);
2. ibatis ( xml )
SELECT
<isNotEmpty property="cardList">
<iterate property="cardList">
user_id AS "$cardList[].code1$",
user_name AS "$cardList[].code1$",
</iterate>
</isNotEmpty>
3. 참고사항
select 에 넣을때는 $을 사용해야 함.
728x90
반응형
'Database ( DB ) > ibatis, mybatis' 카테고리의 다른 글
mybstis typeAlias 사용하기 (0) | 2019.08.11 |
---|---|
[mybatis] JAVA로 config 설정 (0) | 2019.08.11 |
[mybatis] 프로젝트 외부 경로 사용 ( mapper ) (0) | 2019.08.11 |
ibatis/mybatis - org.postgresql.jdbc4.Jdbc4PreparedStatement.setQueryTimeout(int) 에러 발생 시 (0) | 2019.08.05 |
[mybatis] insert return [serial] (0) | 2019.07.23 |