Commit ed0aadb7 by 熊鹏飞

Revert "设置时区为美国达拉斯时区"

This reverts commit a8a8895f.
parent a8a8895f
package com.xxl.job.admin;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import java.util.TimeZone;
@Configuration
public class GlobalTimeZoneConfig {
public GlobalTimeZoneConfig() {
// 设置整个Java虚拟机的默认时区
TimeZone.setDefault(TimeZone.getTimeZone("America/Chicago"));
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment