일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- Windows
- context
- plugin
- 네트워크
- lsof
- grep
- Windows 10
- netsh
- Mac
- 단축키
- find
- Eclipse
- VirtualBox
- maVen
- port
- Source
- resource
- tomcat
- import
- bash
- profile
- ssh
- 줄바꿈 문자
- IntelliJ
- JavaScript
- xargs
- vscode
- Quartz
- web.xml
- Today
- Total
목록분류 전체보기 (1788)
develog
-----------------------------------------------------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 .
System.getProperty("line.separator")
import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream; public class TestMain { public static void main(String[] args) {System.out.println("START");System.out.println("-----------------------------------");fileCopyTest("assets/aa.zip", "assets/bb.zip");fileCopyTest("asse..
private String getCustomDate(String yyyymmdd) { int year = Integer.parseInt(yyyymmdd.substring(0, 4)); int month = Integer.parseInt(yyyymmdd.substring(4, 6)); int date = Integer.parseInt(yyyymmdd.substring(6, 8)); Calendar cal = Calendar.getInstance(); cal.set(year, month - 1, date); cal.add(Calendar.YEAR, -1); // 1년 전 cal.add(Calendar.MONTH, -1); // 한달 전 cal.add(Calendar.DATE, -1); // 하루 전 Simp..