일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- grep
- Mac
- web.xml
- import
- 줄바꿈 문자
- Eclipse
- ssh
- vscode
- Windows 10
- tomcat
- profile
- netsh
- VirtualBox
- IntelliJ
- port
- xargs
- Windows
- Quartz
- maVen
- JavaScript
- context
- 단축키
- 네트워크
- GIT
- lsof
- plugin
- Source
- bash
- find
- Today
- Total
목록분류 전체보기 (1803)
develog
Calendar cal = Calendar.getInstance();System.out.println(cal.getTimeInMillis());// 1348201513203 // 속도 더 빠름System.currentTimeMillis()// 1348201513203
interface JdbcTemplateHandler {public Object mapRow(String param, JdbcTemplateHandler handler);} class JdbcTemplate implements JdbcTemplateHandler {public Object queryForObject(String param, JdbcTemplateHandler handler) {System.out.println("query executing...");try {Thread.sleep(3000);} catch (InterruptedException e) {e.printStackTrace();}return mapRow(param, handler);}public Object mapRow(Strin..
SELECT X.USER_SEQ, Y.SCORE1, Z.SCORE2FROM( SELECT 'A' USER_SEQ FROM DUAL UNION ALL SELECT 'B' USER_SEQ FROM DUAL UNION ALL SELECT 'C' USER_SEQ FROM DUAL UNION ALL SELECT 'D' USER_SEQ FROM DUAL UNION ALL SELECT 'E' USER_SEQ FROM DUAL) X, ( SELECT 'A' USER_SEQ, '10' SCORE1 FROM DUAL UNION ALL SELECT 'B' USER_SEQ, '20' SCORE1 FROM DUAL UNION ALL SELECT 'E' USER_SEQ, '30' SCORE1 FROM DUAL) Y, ( SELE..
-----------------------------------------------------httpd-vhost.conf 수정-----------------------------------------------------vi /server/apache/conf/extra/httpd-vhosts.conf DocumentRoot /home/dev/www ServerName test1.mydomain.com ServerAlias *.test1.mydomain.com ErrorLog logs/test1.mydomain.com-error_log CustomLog logs/test1.mydomain.com-access_log common JkMount /* worker1 DocumentRoot /home/dev..
[root@dev01 ~] vi /etc/fstab 파일 열어서 해당 항목 추가 127.0.0.1:/mnt/data /data nfs rw 0 0
E:\workspace\test_Zip>jar cvf aa.jar -C src .