SpringBoot

[Spring boot] 서버 띄울때 UTC 시간으로 띄우기

simba 2021. 2. 1. 17:42

개발을 하다보면 UTC와 KST 사이에서 허덕일경우가 있는데

 

ApiApplication.java 에서

 


@PostConstruct
public void before() {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
}

 

를 작성한뒤 서버를 띄우면 UTC로 변환이 되어서 볼수 있다.

'SpringBoot' 카테고리의 다른 글

@RequestParam validation @Min 활용하기  (0) 2021.04.15
[Spring Boot] @NotNull, @NotEmpty, @NotBlank  (0) 2021.03.10
[Springboot] URL로 이미지 다운로드  (0) 2020.12.23
[Java] @Deprecated  (0) 2020.10.27
QueryDSL like, contains  (0) 2020.10.27