菜单 学习猿地 - LMONKEY

VIP

开通学习猿地VIP

尊享10项VIP特权 持续新增

知识通关挑战

打卡带练!告别无效练习

接私单赚外块

VIP优先接,累计金额超百万

学习猿地私房课免费学

大厂实战课仅对VIP开放

你的一对一导师

每月可免费咨询大牛30次

领取更多软件工程师实用特权

入驻
475
0

javax.validation.UnexpectedTypeException: HV000030: No validator could be found for constraint 'javax.validation.constraints.Size' validating type 'java.util.Date'.

原创
05/13 14:22
阅读数 77210

开始是

javax.validation.UnexpectedTypeException: No validator could be found for type: java.lang.Integer, 不能理解为什么,后面想到自己之前代码是好好的,修改了bean 之后才出现这个问题的。 具体来说:

@NotEmpty

private int cnt;

 

我加上了这个NotEmpty 后出现的, 于是,去掉吧。结果又出现了其他错误:

javax.validation.UnexpectedTypeException: HV000030: No validator could be found for constraint 'javax.validation.constraints.Size' validating type 'java.util.Date'. Check configuration for...

 

哦,应该是新加的 @size 注解引起的吧, 去掉后就好了。

 

但是,原因呢?

是这样的, @NotEmpty 只能用于对String 、 Collection 或 array 字段的注解, 其他的 就不行。 

@size 貌似只能用于对 数值类型字段注解。

@NotNull 可以用于 任意类型。

 

原文是:

As per the javadoc of NotEmpty, Integer is not a valid type for it to check. It's for Strings and collections. If you just want to make sure an Integer has some value, javax.validation.constraints.NotNull is all you need.

public @interface NotEmpty

Asserts that the annotated string, collection, map or array is not null or empty.

 

 

参考:

https://stackoverflow.com/questions/5982741/error-no-validator-could-be-found-for-type-java-lang-integer

 

发表评论

0/200
475 点赞
0 评论
收藏