본문 바로가기

Tip

[mybatis] 다중 체크박스를 controller에 매핑

VO에 배열 String[] checkboxList;

 

<input type="text" name="checkboxList[0]" value="1">

<input type="text" name="checkboxList[1]" value="2">

<input type="text" name="checkboxList[2]" value="3">

 

이러면 spring에서 매핑(?) 용어가 기억안나네..

 

string 배열 변수명을 _checkboxList로 쓰면 안됬었음..

'Tip' 카테고리의 다른 글

[jquery] 동적으로 html table(테이블) 생성 속도  (0) 2021.02.23
가비아 SSL 인증서 갱신  (0) 2021.02.23
[mariadb] row 생성 쿼리  (0) 2021.02.23
[mariadb] lock 락 관련  (0) 2021.02.23
[mysql] 랜덤함수 코드 생성  (0) 2021.02.23