Cloudera CDH/CDP 및 Hadoop EcoSystem, Semantic IoT등의 개발/운영 기술을 정리합니다. gooper@gooper.com로 문의 주세요.
//중복제거 대상 변수
List<Map<String, String>> returnList = new ArrayList<Map<String, String>>();
// HashSet 데이터 형태로 생성되면서 중복 제거됨
HashSet<Map<String,String>> hs = new HashSet<Map<String, String>>(returnList);
// ArrayList 형태로 다시 생성
ArrayList<Map<String, String>> returnList2 = new ArrayList<Map<String, String>>(hs);
return returnList2;
댓글 0
번호 | 제목 | 날짜 | 조회 수 |
---|---|---|---|
13 | windows10 pro에서 microservice pattern책의 예제를 kubernetes에서 기동하는 방법 | 2022.01.30 | 2761 |
12 | lagom의 online-auction-java프로젝트 실행시 "Could not find Cassandra contact points, due to: ServiceLocator is not bound" 경고 발생시 조치사항 | 2017.10.12 | 2696 |
11 | [vue storefrontui]외부 API통합하기 참고 문서 | 2022.02.09 | 2628 |
10 | 주문히스토리 조회 | 2022.04.30 | 2617 |
9 | lombok설치방법 | 2020.06.20 | 2603 |
8 | Lagom프레임웍에서 제공하는 HelloWorld 테스트를 수행시 [unknown-version]오류가 발생하면서 빌드가 되지 않는 경우 조치사항 | 2017.12.22 | 2453 |
7 | Lagom에서 제공하는 Maven을 이용한 Hello프로젝트 자동생성 및 실행 | 2018.01.19 | 2416 |
6 | 호출 url현황 | 2023.02.21 | 2344 |
5 | 주문 생성 데이터 예시 | 2022.04.30 | 2329 |
4 | [메모리 덤프파일 분석] | 2017.03.31 | 2242 |
3 | restaurant-controller,에서 등록 예시 | 2022.04.30 | 2124 |
2 |
java스레드 덤프 분석하기
![]() | 2016.11.03 | 2114 |
1 | Windows에서 sbt개발환경 구축 방법(링크) | 2016.06.02 | 2088 |