spring-boot default TimeZome & Locale 설정 張's blog 2023. 6. 2. 14:53 -Locale 설정https://eblo.tistory.com/m/163 Spring Boot Default Timezone, Locale 설정하기@SpringBootApplication public class ExampleApplication { @PostConstruct public void started() { TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul")); Locale.setDefault(Locale.KOREA); } public static void main(String[] args) { SpringApplication.run(Exampeblo.tistory.com- TimeZone 설정https://umanking.github.io/2021/08/10/spring-boot-server-timezone/ Spring Boot 서버 타임존 설정 방법Spring Boot 프로젝트내 서버 타임존 설정하는 방법umanking.github.io