[Spring boot] 서버 띄울때 UTC 시간으로 띄우기 개발을 하다보면 UTC와 KST 사이에서 허덕일경우가 있는데 ApiApplication.java 에서 @PostConstruct public void before() { TimeZone.setDefault(TimeZone.getTimeZone("UTC")); } 를 작성한뒤 서버를 띄우면 UTC로 변환이 되어서 볼수 있다. SpringBoot 2021.02.01