Spring에서 request에 대한 검증 방법 2가지
1. 빈값 검증, not null, 최소 사이즈와 같이 간단한 검증일땐 javax.validation의 @Valid 사용public class TestDto { @Min(0) private int basePrice; @Min(0) private int maxPrice;}@Controller@RequestMapping(value = "/api/events", produces = MediaTypes.HAL_JSON_VALUE)public class TestController { @PostMapping public ResponseEntity createEvent(@RequestBody @Valid EventDto eventDto, ..