-
JAVA SPRING BOOT 시간 변경Stack/Aws 2022. 11. 14. 22:25
@SpringBootApplication public class SpringBootServerTimezoneApplication { @PostConstruct public void started() { // timezone UTC 셋팅 // TimeZone.setDefault(TimeZone.getTimeZone("UTC")); //utc설정 TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul")); //korea time 설정 Locale.setDefault(Locale.KOREA); //locale 설정 } public static void main(String[] args) { SpringApplication.run(SpringBootServerTimezoneApplication.class, args); } }
'Stack > Aws' 카테고리의 다른 글
ec2 java install 커맨드 (0) 2022.11.28 https 인증서 발급+ 무료도메인+연결까지 (0) 2022.11.24 AWS ec2 서버시간 변경 (0) 2022.11.14 AWS 시간 변경 (RDS, JVM 시간 변경) (0) 2022.11.13 리눅스 파일 옮길때 permission deny 에러 해결법 (0) 2022.10.31