A method overriding another method must not alter the parameter constraint configuration
A method overriding another method must not alter the parameter constraint configuration
·
message : 未知异常HV000151: A method overriding another method must not alter the parameter constraint configuration, but method public
message : 未知异常HV000151: A method overriding another method must not alter the parameter constraint configuration, but method public
- 这种错误,大多是接口类和实现类上的注解参数没有保持一致,特别是使用的@Validated校验参数,经常接口类或者实现类,其中有一个没有message信息。
接口类:Result<LxxxResultDTO> test(@Valid @NotNull LxxxDTO lxxxDTO);
实现类:Result<LxxxResultDTO> test(@Valid @NotNull(message = "lxxxDTO") LxxxDTO lxxxDTO)
更多推荐




所有评论(0)