Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 스프링 핵심 원리
- 인프런
- 알고리즘
- 김영한
- springdatajpa
- Android
- spring
- Greedy
- JDBC
- SpringBoot
- JPQL
- Proxy
- jpa
- Exception
- AOP
- transaction
- Servlet
- pointcut
- QueryDSL
- Spring Boot
- Thymeleaf
- java
- 자바
- http
- 스프링
- 백준
- kotlin
- 스프링 핵심 기능
- db
- 그리디
Archives
- Today
- Total
개발자되기 프로젝트
Validator 분리 1 본문
1. Validator
- 현재 Controller가 너무 많은 역할을 가지고 있다.
- 검증 부분을 따로 분리하자
- Spring은 검증을 체계적으로 제공하기 위해 Validator.interface 제공
public interface Validator {
boolean supports(Class<?> clazz);
void validate(Object target, Errors errors);
}
- supports() {} : 해당 검증기를 지원하는 여부 확인(뒤에서 설명)
- validate(Object target, Errors errors) : 검증 대상 객체와 BindingResult
2. ItemValidator
- supports()
- 넘어온 타입이 검증하기 위한 타입인지 판단.
- 구현시 return에 isAssignableFrom(clazz)를 사용한다.
- isAssignable()을 사용하면 자식 class까지 커버가 가능하다.
- validate()메서드에는 앞서 사용한 검증 코드를 넣는다.
- Errros가 넘어오는데, BindingResult의 상위 클래스이다.
- 따라서 Errors로 변경해도 무관함.
- ComponentScan 활용하기 위해 @Component
@Component
public class ItemValidator implements Validator {
@Override
public boolean supports(Class<?> clazz) {
return Item.class.isAssignableFrom(clazz); //자식 클래스까지 커버 가능.
}
@Override
public void validate(Object target, Errors errors) {
Item item = (Item) target;
//검증 로직
if(!StringUtils.hasText(item.getItemName())){
errors.rejectValue("itemName", "required");
}
if(item.getPrice() == null || item.getPrice() < 1000 || item.getPrice() > 1000000){
errors.rejectValue("price", "range", new Object[]{1000, 10000}, null);
}
if(item.getQuantity() == null || item.getQuantity() > 9999){
errors.rejectValue("quantity", "max", new Object[]{9999}, null);
}
//특정 필드가 아닌 복합 룰 검증
if(item.getPrice() != null && item.getQuantity() != null){
int resultPrice = item.getPrice() * item.getQuantity();
if(resultPrice < 10000){
errors.reject("totalPriceMin",new Object[]{10000,resultPrice}, null);
}
}
}
}
3. Controller
- itemValidator.validate(target, bindingResult) 호출하면 검증 부분이 끝
public class ValidationItemControllerV2 {
private final ItemRepository itemRepository;
private final ItemValidator itemValidator;
@PostMapping("/add")
public String addItemV5(@ModelAttribute Item item, BindingResult bindingResult, RedirectAttributes redirectAttributes, Model model) {
itemValidator.validate(item, bindingResult);
//검증에 실패하면 다시 입력 폼으로 이동
if(bindingResult.hasErrors()){
log.info("errors = {}", bindingResult);
// model.addAttribute("errors", errors);
return "validation/v2/addForm";
}
//성공 로직.
Item savedItem = itemRepository.save(item);
redirectAttributes.addAttribute("itemId", savedItem.getId());
redirectAttributes.addAttribute("status", true);
return "redirect:/validation/v2/items/{itemId}";
}
4. GitHub : 210924 Validator1
'인프런 > [인프런] 스프링 MVC 2' 카테고리의 다른 글
Bean Validation (0) | 2021.09.25 |
---|---|
Validator 분리 2 (0) | 2021.09.24 |
오류코드와 메시지 처리6 (0) | 2021.09.24 |
오류 코드와 메시지 처리 5 (0) | 2021.09.24 |
오류코드와 메시지 처리4, MessageCodesResolver (0) | 2021.09.24 |
Comments