자바 의 Simple DateFormat 구덩이

문제.
다 중 스 레 드 에서 Simple DateFormat 을 사용 하여 날짜 전환 을 직접 진행 하려 면 주의해 야 합 니 다. 구덩이, Simple DateFormat 의 parser 등 방법 은 스 레 드 가 안전 하지 않 고 두 가지 방법 으로 해결 할 수 있 습 니 다. 하 나 는 스 레 드 로 컬 변 수 를 통 해 해결 할 수 있 습 니 다.물론 매번 새로운 Simple DateFormat 대상 은 문제 가 없 지만 성능 이 소모 된다.
해결 방법
1. 스 레 드 의 로 컬 변 수 를 통 해 해결
    private static ThreadLocal threadLocal = new ThreadLocal(); 

     public static DateFormat IndexDayModeFormat()   
        {  
            DateFormat df = threadLocal.get();  
            if(df==null){  
                df = new SimpleDateFormat("yyyyMMdd");  
                threadLocal.set(df);  
            }  
            return df;  
        }  

 
 collectionDate = IndexDayModeFormat().parse(dateTime);

2. FastDateFormat 사용
    dirDateFormat = FastDateFormat.getInstance("yyyyMMdd");

기타 용법 유사, 도입 해 야 할 jar
        
            org.apache.commons
            commons-lang3
            3.5
        

좋은 웹페이지 즐겨찾기