Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- aws secretmanager
- DeferredImportSelector
- traceasynccustomautoconfiguration
- Spring JPA
- elasticsearch
- EnableWebMvc
- micrometer tracing
- b3-propagation
- CompletableFuture
- asynccustomautoconfiguration
- Spring Boot
- traceId
- spring3 spring2 traceid
- Sleuth
- java list
- kotlin
- java.util.list
- list
- java lambda
- SpringMVC
- java
- map
- HashMap
- asyncconfigurer
- spring MVC
- @FunctionalInterface
- ResponseBody
- jpa
- spring
- awssecretsmanagerpropertysources
Archives
- Today
- Total
목록ConcurrentHashMap (1)
du.study기록공간
Java Map java.util.concurrent.ConcurrentHashMap
이번에는 Map의 구현체인 ConcurrentHashMap에 대하여 작성하려합니다. 이전에 작성했던 HashMap을 보면 내부적으로 동기화를 보장해주는 부분은 없습니다. (즉 멀티스레드 환경에서 HashMap은 동기화를 보장해 주지 않는다.) 그렇다면 HashTable은 어떨까? HashTable의 메서드를 간략하게 살펴보면 다음과 같습니다. public synchronized boolean contains(Object value) public synchronized boolean containsKey(Object key) public synchronized V get(Object key) public synchronized V put(K key, V value) public synchronized V ..
자바
2020. 4. 6. 21:38