일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ReactJS
- AWS
- Design Patterns
- MySQL
- jenkins
- javascript
- 요리
- elasticsearch
- Web Server
- Gradle
- php
- Spring Boot
- db
- JVM
- laravel
- IntelliJ
- Spring Batch
- devops
- ubuntu
- jsp
- it
- tool
- springboot
- 맛집
- redis
- linux
- Spring
- Git
- java
- Oracle
Archives
- Today
- Total
아무거나
[SpringBoot] @Valid와 BindingResult를 사용한 파라미터 값 체크 본문
반응형
@NotNull과 BindingResult를 활용한 파라미터 예외처리
[Param.java]
import javax.validation.constraints.NotNull;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class Param {
@NotNull(message = "name 값을 입력하여 주시길 바랍니다.")
private Integer name;
@NotNull(message = "id 값을 입력하여 주시길 바랍니다.")
private Integer id;
}
@PostMapping("saveTest")
public ApiResult<Object> setSaveTest(
@ApiParam(
value ="id: 아이디 \n\n" +
"name: 이름"
)
@Valid @RequestBody Param command, BindingResult bindingResult
) {
// 예외처리 -> Param.java의 @NotNull 설정한 메세지를 bindingResult.getFieldError().getDefaultMessage() 를 통하여 리턴받을 수 있음
if (bindingResult.hasErrors()) {
return new ApiResult<>(
ApiErrorType.MESSAGE,
ApiErrorCode.FAIL,
bindingResult.getFieldError().getDefaultMessage()
);
}
return new ApiResult<>(
ApiSuccessType.MESSAGE,
ApiSuccessCode.SUCCESS,
"등록이 완료되었습니다."
);
}
반응형
Comments