Skip to content

Commit

Permalink
fix: TimeZone Asia/Seoul로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
5win committed Nov 13, 2024
1 parent b4a4b1b commit e9c55f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/gamsa/Application.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.gamsa;

import java.util.TimeZone;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
Expand All @@ -12,6 +13,7 @@
@SpringBootApplication
public class Application {
public static void main(String[] args) {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"));
SpringApplication.run(Application.class, args);
}
}

0 comments on commit e9c55f4

Please sign in to comment.