일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- find
- maVen
- JavaScript
- resource
- port
- netsh
- IntelliJ
- Windows
- Quartz
- tomcat
- Windows 10
- VirtualBox
- Eclipse
- ssh
- bash
- profile
- GIT
- plugin
- Source
- 줄바꿈 문자
- grep
- context
- xargs
- web.xml
- import
- vscode
- lsof
- 네트워크
- Mac
- 단축키
- Today
- Total
목록Dev/Java (163)
develog
import org.apache.poi.ss.usermodel.Cell;import org.apache.poi.ss.usermodel.CellStyle;import org.apache.poi.ss.usermodel.Font;import org.apache.poi.ss.usermodel.IndexedColors;import org.apache.poi.ss.usermodel.Row;import org.apache.poi.ss.usermodel.Sheet;import org.apache.poi.ss.usermodel.Workbook;import org.apache.poi.ss.util.CellRangeAddress;import org.apache.poi.xssf.usermodel.XSSFWorkbook; Wo..
Cron Expressions http://quartz-scheduler.org/documentation/quartz-2.x/tutorials/crontrigger http://quartz-scheduler.org/documentation/quartz-2.2.x/tutorials/tutorial-lesson-06 http://quartz-scheduler.org/api/2.2.0/org/quartz/CronExpression.html Field Name Allowed Values Allowed Special Characters Seconds 0-59 , - * / Minutes 0-59 , - * / Hours 0-23 , - * / Day-of-month 1-31 , - * ? / L W Month 1..
quartz 버전Quartz 2.2.0 full distribution jar 파일lib/log4j-1.2.16.jarlib/quartz-2.2.0.jarlib/slf4j-api-1.6.6.jarlib/slf4j-log4j12-1.6.6.jar TestMain.javaimport org.quartz.CronTrigger;import org.quartz.Job;import org.quartz.JobDetail;import org.quartz.JobExecutionContext;import org.quartz.JobExecutionException;import org.quartz.Scheduler;import org.quartz.SchedulerFactory;import org.quartz.impl.StdS..
Apache Derby 설치 ▶설치 가이드http://db.apache.org/derby/papers/DerbyTut/install_software.html ▶프로그램 다운로드db-derby-10.10.1.1-bin.zip ▶프로그램 압축해제C:\Apache\db-derby-10.10.1.1-bin\ ▶환경변수 셋팅DERBY_INSTALL=C:\Apache\db-derby-10.10.1.1-bin ▶CLASSPATH 추가 (derby.jar, derbytools.jar);%DERBY_INSTALL%\lib\derby.jar;%DERBY_INSTALL%\lib\derbytools.jar; ▶설치됐는지 확인c:\> java org.apache.derby.tools.sysinfo ▶ij 실행c:\> java ..
public static void copyTest() throws Exception { FileInputStream fis = new FileInputStream("aa.zip"); FileOutputStream fos = new FileOutputStream("bb.zip"); int bytesRead; byte[] buffer = new byte[1024 * 2]; while ((bytesRead = fis.read(buffer, 0, buffer.length)) > -1) { fos.write(buffer, 0, bytesRead); } fis.close(); fos.close();}
pom.xml 3.1.1.RELEASE mesir-repo http://mesir.googlecode.com/svn/trunk/mavenrepo junit junit 4.11 test com.oracle ojdbc14 10.2.0.4.0 org.springframework spring-context ${org.springframework-version} org.springframework spring-jdbc ${org.springframework-version} org.springframework spring-web ${org.springframework-version} org.springframework spring-webmvc ${org.springframework-version} org.mybat..