@RequestParam validation 활용하기
@RequestParam 데이터 validation방법으로는
Controller class에 @Validate 를 추가하고 유효성체크하려는 파라미터 앞에 @Min 을 정의한다
최소값 정의
@Slf4j
@Validated
@RestController
public class TestController {
@GetMapping(value="/test")
public ResultInfo test(@RequestParam @Min(1) int id){
log.info("requested param = {}", id);
}
}
'SpringBoot' 카테고리의 다른 글
spring boot Process finished with exit code 0 (0) | 2021.07.05 |
---|---|
[Spring Boot] @NotNull, @NotEmpty, @NotBlank (0) | 2021.03.10 |
[Spring boot] 서버 띄울때 UTC 시간으로 띄우기 (0) | 2021.02.01 |
[Springboot] URL로 이미지 다운로드 (0) | 2020.12.23 |
[Java] @Deprecated (0) | 2020.10.27 |