일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바
- Bootstrap
- Apache Lucene
- Android
- TextBox
- WebView
- 자바스크립트
- varags
- 웹뷰
- scrollView
- SpringSource Tool Suite
- Java
- html
- Maven
- MS-SQL
- 안드로이드
- Eclipse
- C#
- jsp
- 컬럼명
- Web Service
- asp.net
- Redirect
- 웹 서비스
- 이클립스
- MANTIS
- MSsql
- STS
- javascript
- decompiler
- Today
- Total
목록Java (59)
bboks.net™
@Scheduled(cron = "0 50 21 * * 1-5") //월~금까지 오후 9시50분에 실행 public void scheduleMethod() { something(...); } Cron 표현식총 7개의 필드를 가지며 마지막 필드(년도)는 생략 가능필드 이름 허용 값 초(seconds) 0~59 분(minutes) 0~59 시(hours) 0~23 날(day of month) 1~31 달(month of year) 1~12 요일(day of week) 0~6 (0=일요일) 년도(year) optional 빈값(공백) 1970~2099) Cron 표현식 특수문자표현식 설명 예시 * 모든 값 - 범위 * 10-13 * * * *매시 10, 11, 12, 13분에 실행 , 특정 값 * * 10,1..
자바 코드기반 구성 HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(); factory.setReadTimeout(2000); //milliseconds factory.setConnectionTimeout(2000); // milliseconds RestTemplate restTemplate = new RestTemplate(factory); XML 기반 구성 [출처] How to Set HTTP Request Timeouts With Spring RestTemplate
1. FileStream private static void copyFileUsingFileStreams(File source, File dest) throws IOException { InputStream input = null; OutputStream output = null; try { input = new FileInputStream(source); output = new FileOutputStream(dest); byte[] buf = new byte[1024]; int bytesRead; while ((bytesRead = input.read(buf)) > 0) { output.write(buf, 0, bytesRead); } } finally { input.close(); output.clo..
아파치의 RandomStringUtils 사용 import org.apache.commons.lang.RandomStringUtils; public class RandomStringUtilsTest { int length = 10; String randomString = RandomStringUtils.random(length, true, true); System.out.println(randomString); } Maven Repositoryhttp://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.3.2 org.apache.commons commons-lang3 3.3.2 [출처] 자바 (Java)에서 랜덤 (Random) 문자열 (St..