simpledateformat线程安全问题
在阿里的java开发手册中,有明确的要求。
线程不安全的原因
simpledateformat中的fromat方法中可以看到format方法用calendar来存储时间,当我们声明simpledateformat时,使用static定义,simpledateformat就是一个共享变量,其中的calendar方式也就会被多个线程访问到。
所以就可能会出现线程1中的值是2021-4-9,线程1还没有执行完,线程2开始执行,将值改成2021-4-10,这样就造成看线程不安全。
解决办法
1.使用局部变量,不使用全局变量
2.加锁synchronized ()
3.使用ThreadLocal
/**
* SimpleDateFormat线程安全测试
* 〈功能详细描述〉
*
* @author daogan
*/
public class SimpleDateFormatTest {
private static final ThreadLocal<SimpleDateFormat> THREAD_LOCAL = new ThreadLocal<SimpleDateFormat>() {
@Override
protected SimpleDateFormat initialValue() {
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
}
};
// private SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
ThreadPoolExecutor poolExecutor = new ThreadPoolExecutor(10, 100, 1, TimeUnit.MINUTES, new LinkedBlockingQueue<>(1000), new MyThreadFactory("SimpleDateFormatTest"));
public void test() {
while (true) {
poolExecutor.execute(new Runnable() {
@Override
public void run() {
SimpleDateFormat simpleDateFormat = THREAD_LOCAL.get();
if (simpleDateFormat == null) {
simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
}
String dateString = simpleDateFormat.format(new Date());
try {
Date parseDate = simpleDateFormat.parse(dateString);
String dateString2 = simpleDateFormat.format(parseDate);
System.out.println(dateString.equals(dateString2));
} catch (ParseException e) {
e.printStackTrace();
} finally {
local.remove();
}
}
});
}
}
}
4.使用DateTimeFormatter代替SimpleDateFormat
注意:大写的YYYY和yyyy和区别