Skip to content

Commit

Permalink
Merge pull request #96 from UMC5th-bias/fix/#91
Browse files Browse the repository at this point in the history
[FIX#91] 서버시간 UTC 표준으로 변경
  • Loading branch information
ppparkta committed Feb 17, 2024
2 parents b022e74 + 1aaa85d commit eb337f2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/favoriteplace/FavoritePlaceApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.scheduling.annotation.EnableScheduling;

import java.util.TimeZone;

@SpringBootApplication
@EnableJpaAuditing
@EnableScheduling
public class FavoritePlaceApplication {

public static void main(String[] args) {
TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
SpringApplication.run(FavoritePlaceApplication.class, args);
}

Expand Down

0 comments on commit eb337f2

Please sign in to comment.