[SQL] ApacheCommons ListUtils partition

ArrayList 를 일정 크기로 분할할 때,  sublist(int fromIndex, int toIndex) 를 사용해도 되지만,  리스트 사이즈내에서 fromIndex, toIndex구하는 로직을 추가로 짜야한다. Apache Commons 라이브러리의 partition 메서드를 사용하면 아주 간편하게 List를 사이즈에...