-
Spring boot 시작 시 함수 실행하고 싶을 때.Computer Science/Spring boot 2022. 7. 17. 18:00
@Component @Slf4j public class CrawlComponent implements ApplicationRunner { @Override public void run(ApplicationArguments args) throws Exception{ setAllMatchList(); }
해당 component에 applicationRunner를 implements 해준 뒤
run 함수를 override하면 해당 함수는 프로그램이 시작하면 바로 진행하게 된다.
'Computer Science > Spring boot' 카테고리의 다른 글
Cerbot을 통한 SSL 발급받아 Spring boot에 적용하기 (0) 2022.07.27 Spring boot에 APM(dataDog) 적용하기. (0) 2022.07.26 Spring boot 시작 시 database에 값 넣기. (0) 2022.07.17 Jpa entity 다대다, 다대일, 일대다 설정하기. (0) 2022.07.15 MySQL Json type을 Jpa로 다루기 (0) 2022.07.15