Skip to content

Commit

Permalink
[Fix] 삭제된 스케줄링 설정 다시 추가
Browse files Browse the repository at this point in the history
@EnableScheduling 어노테이션 추가
  • Loading branch information
ImKEISS committed Oct 28, 2024
1 parent 0aa44e0 commit a4f2e39
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/appcenter/BJJ/BjjApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
import io.swagger.v3.oas.annotations.servers.Server;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;

//API의 기본 서버 url을 애플리케이션의 루트 경로로 설정
@OpenAPIDefinition(servers = {
@Server(url = "/", description = "Default Server URL")
})
@SpringBootApplication
@EnableScheduling
public class BjjApplication {
public static void main(String[] args) {
SpringApplication.run(BjjApplication.class, args);
Expand Down

0 comments on commit a4f2e39

Please sign in to comment.