zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    Docker导入容器快照,执行报错:docker: Error response from daemon: No command specified.
    git笔记
    数据库设计
    前端项目--配置上下文
    tomcat启动前端项目
    Nginx配置负载均衡
    Nginx使用
    转载自:StringUtils的常见方法
    转载:String.format()的详细用法
    tomcat配置解决乱码问题
  • 原文地址:https://www.cnblogs.com/FlyAway2013/p/7703741.html
Copyright © 2011-2022 走看看