aw,我可以在java Spring服务器中设置运行时间吗?

时间:2019-11-24 16:39:24

标签: java spring maven web websocket

我有一个websocket问题,因为客户端时间和服务器时间不匹配。 如何设置Java Spring服务器的本地时间。我使用了Maven依赖项。 enter image description here

1 个答案:

答案 0 :(得分:1)

如果要将本地时区更改为与客户端相同。 可以

  • 系统属性-Duser.timezone =美国/纽约
  • 或环境TZ =“ Europe / Bratislava”
  • 或代码
ZoneId bratislavaZoneId = ZoneId.of("Europe/Bratislava");
TimeZone tz = TimeZone.getTimeZone(bratislavaZoneId);
TimeZone.setDefault(tz);
SpringApplication.run(TestApplication.class);