일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 네트워크
- resource
- import
- JavaScript
- vscode
- port
- Source
- Eclipse
- plugin
- Quartz
- xargs
- 단축키
- profile
- ssh
- GIT
- lsof
- grep
- netsh
- Mac
- VirtualBox
- Windows 10
- find
- maVen
- tomcat
- Windows
- context
- 줄바꿈 문자
- web.xml
- bash
- IntelliJ
- Today
- Total
목록Dev/Java (163)
develog
// import org.springframework.util.LinkedMultiValueMap; // import org.springframework.util.MultiValueMap; Map map1 = new HashMap(); MultiValueMap 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]
my-prop.properties prop.key1 = 123 prop.key2 = true servlet.xml controller @Value("#{myProp['prop.key1']}") private String myValue1; @Value("#{'true'.equals(myProp['prop.key2'])}") private boolean myValue2;
정의 public void test1(Object ... args) { for (int i = 0; i
httpServletRequest.getRemoteAddr() 실행시IPv6 로 나오는 경우 ( 0:0:0:0:0:0:0:1 )IPv4 로 변경하는 방법 ( 127.0.0.1 ) VM arguments 에 아래 내용 추가-Djava.net.preferIPv4Stack=true eclipse VM arguments 설정eclipse > Servers > Tomat 7 더블 클릭> General Information > Open launch configuration> Arguments > VM arguments
Dynamic SQLhttps://ibatis.apache.org/docs/dotnet/datamapper/ch03s09.html