验证错误:“找不到类型为java.lang.Integer的验证器”


78

我正在与Spring合作开发一个项目,为什么我总是收到以下错误?

javax.validation.UnexpectedTypeException:
找不到以下类型的验证器:java.lang.Integer


这是我的代码:

package com.s2rsolutions.model;

import java.util.Date;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.Size;

import org.hibernate.validator.constraints.NotEmpty;

@Entity
@Table(name = "sales")
public class Sales {

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "ttl_d_sls_lst_mth", nullable = false)
    private Integer ttl_d_sls_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "ttl_d_sls_6_mth", nullable = false)
    private Integer ttl_d_sls_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "ttl_d_sls_mtht", nullable = false)
    private Integer ttl_d_sls_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "ttl_s_sls_lst_mth", nullable = false)
    private Integer ttl_s_sls_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "ttl_s_sls_6_mth", nullable = false)
    private Integer ttl_s_sls_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "ttl_s_sls_mtht", nullable = false)
    private Integer ttl_s_sls_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "nw_lst_mth", nullable = false)
    private Integer nw_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "nw_6_mth", nullable = false)
    private Integer nw_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "nw_mtht", nullable = false)
    private Integer nw_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "usd_lst_mth", nullable = false)
    private Integer usd_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "usd_6_mth", nullable = false)
    private Integer usd_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "usd_mtht", nullable = false)
    private Integer usd_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "grss_prt_pvnr_lst_mth", nullable = false)
    private Integer grss_prt_pvnr_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "grss_prt_pvnr_6_mth", nullable = false)
    private Integer grss_prt_pvnr_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "grss_prt_pvnr_mtht", nullable = false)
    private Integer grss_prt_pvnr_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "grss_prt_pvur_lst_mth", nullable = false)
    private Integer grss_prt_pvur_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "grss_prt_pvur_6_mth", nullable = false)
    private Integer grss_prt_pvur_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "grss_prt_pvur_mtht", nullable = false)
    private Integer grss_prt_pvur_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "shwrm_tffic_lst_mth", nullable = false)
    private Integer shwrm_tffic_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "shwrm_tffic_6_mth", nullable = false)
    private Integer shwrm_tffic_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "shwrm_tffic_mtht", nullable = false)
    private Integer shwrm_tffic_mtht;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "shwrm_clsng_lst_mth", nullable = false)
    private Integer shwrm_clsng_lst_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "shwrm_clsng_6_mth", nullable = false)
    private Integer shwrm_clsng_6_mth;

    @NotEmpty(message = "The above field must not be blank.")
    @Column(name = "shwrm_clsng_mtht", nullable = false)
    private Integer shwrm_clsng_mtht;

    @Column(name = "date_added")
    private Date addedDate;


    public Integer getTtl_d_sls_lst_mth() {
        return ttl_d_sls_lst_mth;
    }

    public void setTtl_d_sls_lst_mth(Integer ttl_d_sls_lst_mth) {
        this.ttl_d_sls_lst_mth = ttl_d_sls_lst_mth;
    }

    public Integer getTtl_d_sls_6_mth() {
        return ttl_d_sls_6_mth;
    }

    public void setTtl_d_sls_6_mth(Integer ttl_d_sls_6_mth) {
        this.ttl_d_sls_6_mth = ttl_d_sls_6_mth;
    }

    public Integer getTtl_d_sls_mtht() {
        return ttl_d_sls_mtht;
    }

    public void setTtl_d_sls_mtht(Integer ttl_d_sls_mtht) {
        this.ttl_d_sls_mtht = ttl_d_sls_mtht;
    }

    public Integer getTtl_s_sls_lst_mth() {
        return ttl_s_sls_lst_mth;
    }

    public void setTtl_s_sls_lst_mth(Integer ttl_s_sls_lst_mth) {
        this.ttl_s_sls_lst_mth = ttl_s_sls_lst_mth;
    }

    public Integer getTtl_s_sls_6_mth() {
        return ttl_s_sls_6_mth;
    }

    public void setTtl_s_sls_6_mth(Integer ttl_s_sls_6_mth) {
        this.ttl_s_sls_6_mth = ttl_s_sls_6_mth;
    }

    public Integer getTtl_s_sls_mtht() {
        return ttl_s_sls_mtht;
    }

    public void setTtl_s_sls_mtht(Integer ttl_s_sls_mtht) {
        this.ttl_s_sls_mtht = ttl_s_sls_mtht;
    }

    public Integer getNw_lst_mth() {
        return nw_lst_mth;
    }

    public void setNw_lst_mth(Integer nw_lst_mth) {
        this.nw_lst_mth = nw_lst_mth;
    }

    public Integer getNw_6_mth() {
        return nw_6_mth;
    }

    public void setNw_6_mth(Integer nw_6_mth) {
        this.nw_6_mth = nw_6_mth;
    }

    public Integer getNw_mtht() {
        return nw_mtht;
    }

    public void setNw_mtht(Integer nw_mtht) {
        this.nw_mtht = nw_mtht;
    }

    public Integer getUsd_lst_mth() {
        return usd_lst_mth;
    }

    public void setUsd_lst_mth(Integer usd_lst_mth) {
        this.usd_lst_mth = usd_lst_mth;
    }

    public Integer getUsd_6_mth() {
        return usd_6_mth;
    }

    public void setUsd_6_mth(Integer usd_6_mth) {
        this.usd_6_mth = usd_6_mth;
    }

    public Integer getUsd_mtht() {
        return usd_mtht;
    }

    public void setUsd_mtht(Integer usd_mtht) {
        this.usd_mtht = usd_mtht;
    }

    public Integer getGrss_prt_pvnr_lst_mth() {
        return grss_prt_pvnr_lst_mth;
    }

    public void setGrss_prt_pvnr_lst_mth(Integer grss_prt_pvnr_lst_mth) {
        this.grss_prt_pvnr_lst_mth = grss_prt_pvnr_lst_mth;
    }

    public Integer getGrss_prt_pvnr_6_mth() {
        return grss_prt_pvnr_6_mth;
    }

    public void setGrss_prt_pvnr_6_mth(Integer grss_prt_pvnr_6_mth) {
        this.grss_prt_pvnr_6_mth = grss_prt_pvnr_6_mth;
    }

    public Integer getGrss_prt_pvnr_mtht() {
        return grss_prt_pvnr_mtht;
    }

    public void setGrss_prt_pvnr_mtht(Integer grss_prt_pvnr_mtht) {
        this.grss_prt_pvnr_mtht = grss_prt_pvnr_mtht;
    }

    public Integer getGrss_prt_pvur_lst_mth() {
        return grss_prt_pvur_lst_mth;
    }

    public void setGrss_prt_pvur_lst_mth(Integer grss_prt_pvur_lst_mth) {
        this.grss_prt_pvur_lst_mth = grss_prt_pvur_lst_mth;
    }

    public Integer getGrss_prt_pvur_6_mth() {
        return grss_prt_pvur_6_mth;
    }

    public void setGrss_prt_pvur_6_mth(Integer grss_prt_pvur_6_mth) {
        this.grss_prt_pvur_6_mth = grss_prt_pvur_6_mth;
    }

    public Integer getGrss_prt_pvur_mtht() {
        return grss_prt_pvur_mtht;
    }

    public void setGrss_prt_pvur_mtht(Integer grss_prt_pvur_mtht) {
        this.grss_prt_pvur_mtht = grss_prt_pvur_mtht;
    }

    public Integer getShwrm_tffic_lst_mth() {
        return shwrm_tffic_lst_mth;
    }

    public void setShwrm_tffic_lst_mth(Integer shwrm_tffic_lst_mth) {
        this.shwrm_tffic_lst_mth = shwrm_tffic_lst_mth;
    }

    public Integer getShwrm_tffic_6_mth() {
        return shwrm_tffic_6_mth;
    }

    public void setShwrm_tffic_6_mth(Integer shwrm_tffic_6_mth) {
        this.shwrm_tffic_6_mth = shwrm_tffic_6_mth;
    }

    public Integer getShwrm_tffic_mtht() {
        return shwrm_tffic_mtht;
    }

    public void setShwrm_tffic_mtht(Integer shwrm_tffic_mtht) {
        this.shwrm_tffic_mtht = shwrm_tffic_mtht;
    }

    public Integer getShwrm_clsng_lst_mth() {
        return shwrm_clsng_lst_mth;
    }

    public void setShwrm_clsng_lst_mth(Integer shwrm_clsng_lst_mth) {
        this.shwrm_clsng_lst_mth = shwrm_clsng_lst_mth;
    }

    public Integer getShwrm_clsng_6_mth() {
        return shwrm_clsng_6_mth;
    }

    public void setShwrm_clsng_6_mth(Integer shwrm_clsng_6_mth) {
        this.shwrm_clsng_6_mth = shwrm_clsng_6_mth;
    }

    public Integer getShwrm_clsng_mtht() {
        return shwrm_clsng_mtht;
    }

    public void setShwrm_clsng_mtht(Integer shwrm_clsng_mtht) {
        this.shwrm_clsng_mtht = shwrm_clsng_mtht;
    }

    public Date getAddedDate() {
        return addedDate;
    }

    public void setAddedDate(Date addedDate) {
        this.addedDate = addedDate;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    @Id
    @Column(name = "username")
    private String username;

}


看起来这与我之前所面对的相似,这篇文章对我有所帮助。要自定义在绑定时失败的错误消息。在此链接中查找有关在您的应用程序上下文中创建MessageSource bean和创建messages.properties资源包的更多详细信息:
Kris,

Answers:


206

根据NotEmptyjavadoc,Integer不是要检查的有效类型。它用于字符串和集合。如果您只想确保Integer具有一定的价值,javax.validation.constraints.NotNull那么您所需要做的就是。

公共@interface NotEmpty

声明带注释的字符串,集合,映射或数组不为null或为空。


11
+1。@NotEmpty是专有的,应该完全避免。可以将其替换为@ NotNull,@ Range和@Size(取决于上下文)
ChssPly76

3
同意在可能的情况下避免使用特定于供应商的功能,但这要归功于它的免费和开源:)
Affe 2012年

2
意外地用注解注释整数字段是多么容易@NotEmpty。然后,您得到的警告不那么有用:“找不到约束类型'javax.validation.constraints.Size'的验证类型'java.lang.Integer'的验证器。”
Michael Piefel '17

最好的是,如果有一种方法能够获取更详细的错误消息,以了解哪个属性导致了引发异常的问题。如果有人知道这一点,我将很高兴知道答案。感谢您的帖子,它解决了我的问题。
Beezer's October

@Beezer ConstraintViolationException还有一个附加方法getConstraintViolations(),该方法返回ConstraintViolation对象的列表,然后每个对象都有一条消息。
Affe


3

如问题所述,要解决此错误,您必须使用正确的注释。在上述问题中,@NotBlank@NotEmpty注释只能应用于任何String字段。

要验证长类型字段,请使用注释@NotNull


2

您可以添加休眠验证器依赖项,以提供验证器

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-validator</artifactId>
    <version>6.0.12.Final</version>
</dependency>

2

对于这种类型的错误:UnexpectedTypeException错误:我们正在尝试在任何bean属性上使用不正确的Hibernate验证程序注释。对于我的Springboot项目的同一问题(验证类型为'java.lang.Integer')

对我@NotNull有用的解决方案用于Integer。


1
请改进格式并解释为什么您建议将此作为合适的答案
Nick Martin
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.