java 8 remove duplicate object in List
자바 8으로 객체 리스트의 중복 데이터 제거하기 @Test public void testaa() { List list = Arrays.asList( new test("test1","email1","option1"), new test("test1","email1","option2"), new test("test1","email1","option3"), new test("test1","email1","option3") ); System.out.println(list.size()); List list2 = new ArrayList(); //note: getOption 으로 비교 list2.addAll(list.stream().collect(Collectors.toConcurrentMap(test::getOpt..
2018. 9. 12.