🗒️踩坑记录
2024-1-3
| 2024-1-3
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
category
icon
password
 
 
 
【强制】SimpleDateFormat是线程不安全的类,一般不要定义为static变量,如果定义为static,必须加锁,或者使用DateUtils工具类。
正例:注意线程安全,使用DateUtils。亦推荐如下处理:
说明:如果是JDK8的应用,可以使用Instant代替Date,LocalDateTime代替Calendar,DateTimeFormatter代替Simpledateformatter,官方给出的解释:simple beautiful strong immutable thread-safe。
Java8 中的时间 APIDB2 CDC 参考资料
Loading...
目录