springboot配置全局时区
作者:互联网
自定义一个全局时区配置类
package com.stone.bigdata.config;
import org.springframework.context.annotation.Configuration;
import javax.annotation.PostConstruct;
import java.time.ZoneOffset;
import java.util.TimeZone;
/**
* 全局时区
* @author yanchi
* @date 2022/3/20 11:40
*/
@Configuration
public class GlobalZoneConfig {
@PostConstruct
void started() {
//时区设置:中国上海(东八区)
TimeZone.setDefault(TimeZone.getTimeZone(ZoneOffset.of("+8")));
}
}
标签:java,springboot,配置,ZoneOffset,TimeZone,import,全局,Configuration 来源: https://blog.csdn.net/weixin_51311218/article/details/123628157