-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(Examp
eblo.tistory.com
- TimeZone 설정
https://umanking.github.io/2021/08/10/spring-boot-server-timezone/
Spring Boot 서버 타임존 설정 방법
Spring Boot 프로젝트내 서버 타임존 설정하는 방법
umanking.github.io
'spring-boot' 카테고리의 다른 글
Shutdown a Spring Boot Application (0) | 2023.07.19 |
---|---|
spring boot graceful timeout (0) | 2023.06.19 |
handle exception by using spring redis cache (0) | 2023.05.17 |
Spring Boot With H2 Database (0) | 2023.02.20 |
spring-boot AutoConfiguration 원리 및 만들어 보기 (0) | 2023.02.18 |