import org.springframework.scheduling.support.CronSequenceGenerator;
boolean validExpression = CronSequenceGenerator.isValidExpression(cronRegExp);
if(!validExpression){
log.info("{} cron 표현식이 잘못되었습니다. > {}", code, cronRegExp);
return false;
}
'SpringFramework > Spring' 카테고리의 다른 글
동적 빈 생성 (0) | 2021.07.07 |
---|---|
추상클래스를 사용한 통합 배치 관리 프로그램 (0) | 2021.07.06 |
String 중괄호 매핑 함수 (log.info 대신 사용) (0) | 2021.07.06 |
Spring Boot 어플리케이션 설정 공식 문서 (0) | 2021.05.04 |
SpringBoot CORS (WebMvcConfigurer 사용) 적용 방법 (0) | 2021.04.13 |