国外服务器部署springboot 项目 出现时区问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了国外服务器部署springboot 项目 出现时区问题相关的知识,希望对你有一定的参考价值。
参考技术A 查看当前服务器下的时间:设置操作系统的时区:
备份当前的时区配置
替换系统时区文件
或者创建链接文件
修改clock系统配置文件/etc/sysconfig/clock为如下内容
设置操作系统环境变量TZ
在/etc/profile或~/.bashrc文件中设置环境变量TZ
或者
通过source命令即可完成设置
AVA硬编码
按照以上方法操作后,可以获取指定的时区
SpringBoot项目连接MYSQL的时区问题
在启动SpringBoot项目的时候报错:java.sql.SQLException: The server time zone value ‘?D1ú±ê×?ê±??‘ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support. 原因是MYSQL时区配置不正确。打开MYSQL的配置文件
my.cnf
或者my.ini
,在[mysqld]
区块追加时区配置:
[mysqld]
default-time_zone=‘+8:00‘
然后重启MYSQL服务即可。
以上是关于国外服务器部署springboot 项目 出现时区问题的主要内容,如果未能解决你的问题,请参考以下文章