반응형 스프링부트2 [Springboot] 라이브러리 의존성 버전 확인 및 선택하는 방법! dependency version 사용하는 스프링 버전과 호환이 잘되는 라이브러리 의존성 버전을 사용하려면 공식 문서에서 확인하면 된다 아래 과정을 따라가서 버전을 확인해보자! 1. 스프링부트 사이트에 들어가서 사용하려는 스프링 부트 버전의 Reference Doc. 을 클릭! https://spring.io/projects/spring-boot#learn Spring Boot Commercial support Business support from Spring experts during the OSS timeline, plus extended support after OSS End-Of-Life. Publicly available releases for critical bugfixes and security issues when req.. 2022. 3. 31. [Springboot] 스프링 스케줄러 설정 / 1분 주기 / 5분 주기 / 매일 자정 / 환경 변수 이용 / 예제 1. @EnableScheduling 어노테이션 추가 @SpringBootApplication 어노테이션이 있는 Application.java 파일에 @EnableScheduling 어노테이션 추가 2. Scheduler.java 파일 생성 3. Scheduler class에 @Component 어노테이션 추가 4. 메소드 작성 및 @ Scheduled 어노테이션 작성 (크론표현식 이용) @Scheduled(cron = "0 */5 * * * *") 1분 주기 0 * * * * * 5분 주기 0 */5 * * * * 매일 자정 0 0 0 * * * 5. @Value 어노테이션 이용해서 application.yml, application-local.yml 등 파일에 있는 환경 변수 사용 @Component.. 2021. 1. 11. 이전 1 다음