→ Server 에서 실행시킬 때 TimeZone 이 변경될 수 있으므로 Asia/Seoul 로 설정
@SpringBootApplication
public class SpringBootServerTimezoneApplication {
@PostConstruct
public void started() {
// timezone Asia/Seoul 셋팅
TimeZone.setDefault(TimeZone.getTimeZone("KST"));
}
public static void main(String[] args) {
SpringApplication.run(SpringBootServerTimezoneApplication.class, args);
}
}
https://umanking.github.io/2021/08/10/spring-boot-server-timezone/