regex 특정숫자
-
[Spring boot] validation regex 특정숫자 허용Web/Spring boot 2022. 5. 19. 10:34
spring의 param을 validation 처리 할때에 특정 숫자만 허용되게끔 하고 싶다면 아래와 같이 사용하면된다. | 는 or 조건으로 0,2,3,5 이외의 값이 들어오면 에러 메세지를 내보낸다. @Pattern(regexp = "0|2|3|5", message = "Values other than 0,2,3,5 cannot be expressed.") private String useType;