티스토리 뷰
simpleDateFormat 쓰레드 락 걸릴 때 있다
Calendar 역시 static은 쓰레드 락 걸린다
FastDateFormat 쓰자
Format sdf = FastDateFormat.getInstance("yyyyMMddHHmmss",
Locale.getDefault());
String currDate = sdf.format(new
Date());
log.debug("yyyyMMddHHmmss : " + currDate);
log.debug("yyyyMMddHHmmss : " + currDate);
http://stackoverflow.com/questions/6840803/simpledateformat-thread-safety
http://devday.tistory.com/entry/SimpleDateFormat%EA%B3%BC-Thread-Safety
'IT > Java' 카테고리의 다른 글
Spring 구동 시 v$session 정보 변경법 (0) | 2014.07.25 |
---|---|
Controller 에서 request parameter Map으로 받을려면 (0) | 2014.07.23 |
전자정부프레임워크 log4jdbc-remix 이용 쿼리 로그 가독성 있게 보기 설정 (0) | 2014.07.23 |
Quartz scheduler CronExpression (0) | 2014.07.23 |
한글 형태소 분석 (0) | 2014.07.21 |
댓글