首页 > 其他 > 详细

@Validated使用异常

时间:2020-03-03 23:09:12      阅读:1036      评论:0      收藏:0      [点我收藏+]

最近在需求code中,在调用一个项目中的方法,一直报如下错,百思不得其解。

HV000151: A method overriding another method must not alter the parameter constraint configuration, but method public int com.xxxx.service.xxxx.impl.xxxfundInfoServiceImpl.
updateXXXStatus(java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer) changes the configuration of public abstract int com.xxxx.service.xxxx.impl.xxxfundInfoServiceImpl.
updateXXXStatus(java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer).

方法定义及实现如下:

int updateXXXStatus(@NotNull Long pId, @NotNull Long orderNo, @NotNull Integer oldStatus, @NotNull Integer newStatus);

 

 public int updateXXXStatus(Long pId, Long orderNo, @NotNull Integer oldStatus, @NotNull Integer newStatus) {
     。。。。。。。。。。

     。。。。。。。。。。

}

经过反复检查对比,发现这个面向接口的编程接口使用的validate注解了,而实现方法中确没有加。

这样解决方法就比较简单了,

   1、定义和实现的方法参数都加一样的validate注解

   2、定义和实现的方法参数都去掉validate注解

   3、定义中不设置,只实现方法中参数有

@Validated使用异常

原文:https://www.cnblogs.com/xuzhujack/p/12405131.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!