spring boot에서 LocalDate, LocalDateTime을 사용할 때 9시간 늦은 시간이 계속 적용되었습니다.
해결법
@SpringBootApplication이 달려있는 class에 아래와 같이 주석 처리한 부분을 더해줍니다.
@SpringBootApplication
public class WebCurationApplication {
public static void main(String[] args) {
SpringApplication app = new SpringApplication(WebCurationApplication.class);
app.addListeners(new ApplicationPidFileWriter()); // pid 파일을 생성하는 writer 등록
app.run(args);
}
// @PostConstruct
// public void started(){
// TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"));
// }
}
'Backend > Spring' 카테고리의 다른 글
ContextLoaderListener란 (0) | 2022.10.21 |
---|---|
[ERROR] 스프링 빌드 중 에러 모음 (0) | 2022.09.27 |
Build Error : no main manifest attribute, in *.jar (0) | 2021.11.10 |
Error : HttpMediaTypeNotSupportedException (0) | 2021.10.04 |
API KEY 값 저장하기 (0) | 2021.10.01 |