Spring @Validated无法校验默认Groups

最近新项目是使用Hibernate Validator做表单验证,遇到有id在更新时不能为空,而在添加时需要为空的情况,所以使用了group属性来指定在什么情况下使用哪个验证规则,而在Controller方法只使用@Validated({Insertion.class})来分组验证:

public ApiResponse createUser(@Validated({Insertion.class}) @RequestBody UserDTO userDTO) 
{
        log.debug("创建用户 : {}", userDTO);
        if (userRepository.findOneByLoginName(userDTO.getLoginName().toLowerCase()).isPresent()) {
            return ApiResponse.ofFailure("用户名已存在");
        } else {
            UserDTO newUser = userService.createUser(userDTO);
            return ApiResponse.ofSuccess(newUser);
        }
    }

但是加上bean属性group后,出现其他非group字段不执行验证的问题,找了一大圈,发现@Validated在分组验证时并没有添加Default.class的分组,而其他字段默认都是Default分组,所以需要让分组接口继承Default:

public interface Insertion extends Default {
}

Default接口说明:

javax.validation.groups public interface Default
Default Bean Validation group.
Unless a list of groups is explicitly defined:
constraints belong to the Default group
validation applies to the Default group

完美解决问题!

你可能感兴趣的:(Spring)