-
[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;
반응형'Web > Spring boot' 카테고리의 다른 글
[spring boot] @Retryable 카운트 세기 (0) 2022.06.23 [spring] https가 http로 리다이렉트 될때 해결법 (0) 2022.02.15 [log4j이슈] logback버전 변경시 Failed to load class "org.slf4j.impl.StaticLoggerBinder" 에러 (0) 2021.12.24 [Spring] bean의 scope ( feat. request, session 외에도 또있다) (0) 2021.12.16 [spring boot] keystore file not found 에러 (0) 2021.10.15