List<String> uniqueidList = new ArrayList<String>(new HashSet<String>(idList));
hashSet 을 실행하면, 중복 ID를 제거한 unique 한 만 List 형으로 뽑을 수 있다.
List<String> uniqueidList = new ArrayList<String>(new HashSet<String>(idList));
hashSet 을 실행하면, 중복 ID를 제거한 unique 한 만 List 형으로 뽑을 수 있다.