[Java, Mybatis] foreach 문법
... collection: 전달받은 인자값item: 전달받은 인자값을 대체할 이름open: 해당 구문 시작 예, (close: 해당 구문 종료 예, )separator: 구분값예시URIGET /test?testList=1,2,3,4,5 SQLSELECT * FROM t_test WHERE id in (1,2,3,4,5) in JAVA... String[] tmpList = param.get("testList").toString().split(","); List testList = new ArrayList(); for (String i : tmpList) { testList.add(Integer.parseInt(i)); } param.put("testList", testList);... in mapper..
2017. 3. 20.