Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- bash
- resource
- context
- Eclipse
- IntelliJ
- VirtualBox
- Source
- GIT
- profile
- vscode
- xargs
- tomcat
- Mac
- ssh
- plugin
- port
- lsof
- Quartz
- Windows 10
- import
- maVen
- JavaScript
- find
- Windows
- netsh
- grep
- 네트워크
- web.xml
- 단축키
- 줄바꿈 문자
Archives
- Today
- Total
develog
[Java] MultiValueMap 본문
// import org.springframework.util.LinkedMultiValueMap;
// import org.springframework.util.MultiValueMap;
Map<String, Object> map1 = new HashMap<String, Object>();
MultiValueMap<String, Object> map2 = new LinkedMultiValueMap<>();
map1.put("aa", "11");
map1.put("aa", "22");
map2.add("aa", "11");
map2.add("aa", "22");
System.out.println(map1.get("aa")); // 22
System.out.println(map2.get("aa")); // [11, 22]
'Dev > Java' 카테고리의 다른 글
[Spring] properties, @Value (0) | 2019.06.21 |
---|---|
[Java] Optional Parameter (0) | 2019.04.12 |
[Java] HttpServletRequest getRemoteAddr IPv4 설정 (0) | 2018.02.14 |
[iBatis] Dynamic SQL (0) | 2017.08.29 |
[Java] 캐시 무효화 (0) | 2017.08.09 |
Comments