Skip to content

Commit

Permalink
(24/05/15 - 1) 클로즈 베타 테스트 버전 배포합니다.
Browse files Browse the repository at this point in the history
(24/05/15 - 1) 클로즈 베타 테스트 버전 배포합니다.
  • Loading branch information
fakerdeft committed May 14, 2024
2 parents aa8a48e + a16c682 commit 8d973a1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/com/coverflow/CoverflowApplication.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
package com.coverflow;

import com.coverflow.global.config.CorsProperties;
import jakarta.annotation.PostConstruct;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.scheduling.annotation.EnableScheduling;

import java.util.TimeZone;

@EnableScheduling
@EnableAspectJAutoProxy
@SpringBootApplication
Expand All @@ -17,4 +20,9 @@ public static void main(String[] args) {
SpringApplication.run(CoverflowApplication.class, args);
}

@PostConstruct
public void started() {
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"));
}

}

0 comments on commit 8d973a1

Please sign in to comment.