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


開始是

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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM