일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- VirtualBox
- import
- 단축키
- plugin
- ssh
- 줄바꿈 문자
- Mac
- web.xml
- find
- Windows
- IntelliJ
- context
- Quartz
- tomcat
- 네트워크
- profile
- Eclipse
- grep
- GIT
- lsof
- netsh
- bash
- vscode
- xargs
- JavaScript
- resource
- Windows 10
- Source
- maVen
- port
- Today
- Total
목록Dev/Java (163)
develog
public class TestMain { public static void main(String[] args) {test();test(1, null);test("1", "2", null, 3);}private static void test(Object... args) {System.out.println("---------------------------");System.out.println("args.length : " + args.length);for (Object obj : args) {System.out.println("\t" + obj);}}} // output---------------------------args.length : 0---------------------------args.le..
System.out.println();System.out.println("CASE 1");System.out.println("-------------------------------------------");for (int i = 0; i < 3; i++) {System.out.println(i);for (int j = 11; j < 13; j++) {System.out.println("\t" + j);if (j == 11) break;}}System.out.println();System.out.println("CASE 2");System.out.println("-------------------------------------------");myLabel:for (int i = 0; i < 3; i++..
컬럼을 dynamic 하게 가져오는 경우 아래와 같은 에러가 발생함.그런 경우 remapResults="true" 를 적용하면 해결됨. 에러--- The error occurred while applying a result map. --- Check the 쿼리ID - AutoResultMap.--- Check the result mapping for the 컬럼명 property. --- Cause: java.sql.SQLException: 부적합한 열 이름 해결SELECT$DYNA_COL_LIST$FROM DUAL
PrintStream out = new PrintStream("out.log");System.setOut(out);