web/Spring

Mybatis에서 parameterType을 List로 insert하기

반응형

Mybatis에서
parameterType을 List로 지정하여 쿼리를 수행하고 싶은 경우 다음과 같이 진행한다,




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 전송 데이터 형식
List<AccountDto> accouts = new ArrayList<>();
accounts.add(new AccountDto("wedul", 123);
accounts.add(new AccountDto("cjung", 456);
 
accountDao.insertAccounts(accounts);
 
 
 
// Mybatis
<insert id="insert" parameterType="java.util.List">
INSERT INTO account(
 id,
 age
) VALUES 
<foreach item="item" index="index" collection="list">
(
 #{item.id}
 ,#{item.age}
)
</foreach>
</insert>
 
cs


반응형