解决多线程下simpleDateFormat的安全问题
// 日期格式化
private static final ThreadLocal<SimpleDateFormat> GMT_FORMATERS = new ThreadLocal<SimpleDateFormat>() {
protected SimpleDateFormat initialValue() {
SimpleDateFormat gmtFormat = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z", Locale.ENGLISH);
gmtFormat.setTimeZone(new SimpleTimeZone(0, "GMT"));
return gmtFormat;
}
};
浙公网安备 33010602011771号