标签: java spring maven web websocket
我有一个websocket问题,因为客户端时间和服务器时间不匹配。 如何设置Java Spring服务器的本地时间。我使用了Maven依赖项。
答案 0 :(得分:1)
如果要将本地时区更改为与客户端相同。 可以
ZoneId bratislavaZoneId = ZoneId.of("Europe/Bratislava"); TimeZone tz = TimeZone.getTimeZone(bratislavaZoneId); TimeZone.setDefault(tz); SpringApplication.run(TestApplication.class);