DateFormat 线程安全

SimpleDateformat在多线程环境下存在线程安全问题,由于其内部的calendar变量导致parse和format方法不安全。解决方案包括使用JDK7的ThreadLocal或每次新建SimpleDateFormat对象,以及JDK8的DateTimeFormatter,后者为线程安全。
摘要由CSDN通过智能技术生成

 

SimpleDateformat 线程不安全

SimpleDateFormat 继承自 DateFormat, SimpleDateFormat中的parse方法override父类DateFormat的parse方法。DateFormat的父类提供了public setCalendar的方法 导致潜在的线程安全问题。

  • parse方法不安全,使用了实例变量calendar.  当SimpleDateFormat设置为静态变量,多线程calendar发生变化,造成parse中的calendar变量发生了修改。

  • format方法不安全,同样是calendar引起的。

 

 

解决方案一 jdk7 ThreadLocal

public class MyDateUtil {

    private static final ThreadLocal<DateFormat> threadSafeFormat = new ThreadLocal<DateFormat>();
    private static final String MESSAGE_FORMAT = "MM-dd HH:mm:ss.ms"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值