초(0-59) 분(0-59) 시간(0-23) 일(1-31) 월(1-12) 요일(1-7)
@Scheduled(cron="*/10 * * * * *")
10초에 한번씩실행
@Scheduled(cron="0 0 1 * * *")
매일 오전 1시
spring.jpa.properties.hibernate.show_sql= true
@ExceptionHandler(IllegalArgumentException.class)///예외 이름
public ResponseDto<?> handlingException(){
return ResponseDto.fail("에러코드","에러메시지");
}
@RestControllerAdvice
public class ExceptionControllerAdvice {
@ExceptionHandler(IllegalArgumentException.class)///예외 이름
public String handleException() {
return "IllegalArgumentException!";
}
}