본문 바로가기
IT/Spring

[Spring] - 스프링 부트(Spring Boot) 애플리케이션 실행 후 특정 코드를 수행할 수 있는 ApplicationRunner 인터페이스 사용 방법

by 차이나는 개발자 2022. 6. 29.
728x90
반응형

#스프링 부트(Spring Boot) 애플리케이션 실행 후 특정 코드를 수행할 수 있는 ApplicationRunner 인터페이스 사용 방법

 

 

#ApplicationRunner 인터페이스를 사용하면 애플리케이션 구동 시점에 특정코드를 실행할 수 있습니다.

-메서드: run(ApplicationArguments args)

-어플리케이션을 실행하면 run 메서드가 호출됩니다.

@Component
public class SampleApplicationRunner implements ApplicationRunner {

    @Override
    public void run(ApplicationArguments args) throws Exception {
        System.out.println("ApplicationRunner Test");
    }
    
}

 

 

 

728x90
반응형

댓글