[Springboot] @RequestBody @Valid 동작 이슈

루코·2021년 7월 23일
0

TIL

목록 보기
1/1
post-thumbnail

[Problem]

Springboot controller에서 "@RequestBody + @Valid"를 사용해서 DTO를 validation 할 때, DTO에서 설정해놓은 @NotNull 등의 어노테이션들이 동작 안 함

[Solution]

controller에 추가할 것 ("RequestDto"에 검증할 DTO객체 입력)

    @Autowired
    private LocalValidatorFactoryBean validator;

    @InitBinder
    public void initBinder(DataBinder binder) {
        if (binder.getTarget() instanceof RequestDto) {
            binder.setValidator(validator);
        }
    }

0개의 댓글

관련 채용 정보