Skip to content

Commit

Permalink
Merge pull request #220 from CoolPeace-yanolza/bugfix/batch/schedule
Browse files Browse the repository at this point in the history
TimZone 한국시간으로 세팅
  • Loading branch information
KwonJuHwan authored Jan 27, 2024
2 parents 417d789 + 884b554 commit d7f1a10
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/coolpeace/CoolPeaceApplication.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.coolpeace;

import java.util.TimeZone;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
Expand All @@ -11,6 +12,7 @@
public class CoolPeaceApplication {

public static void main(String[] args) {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"));
SpringApplication.run(CoolPeaceApplication.class, args);
}

Expand Down

0 comments on commit d7f1a10

Please sign in to comment.