【问题标题】:spring restful web service validationSpring RESTful Web 服务验证
【发布时间】:2017-08-31 06:43:41
【问题描述】:

我遇到一个问题,如何验证 json 中的 null 输入?

这是我的代码:

    @RequestMapping(value="/findAdpId/", method=RequestMethod.POST , consumes = "application/json", produces = "application/json")
    public @ResponseBody String findAdpId(@RequestBody AllCustomerHist customer){
        String customerId = customer.getCustomerId();
        String srctable = customer.getSrctable();
        String message;

        System.out.println("customer ID = "+customerId);
        System.out.println("srctable = "+srctable);

//      List<AllCustomerHist> adpcust = allCustomerHistService.findAdpId(customerId, srctable);
        BigDecimal adpcust = (BigDecimal) allCustomerHistService.findAdpId(customerId, srctable);


        JSONObject json = new JSONObject();
        json.put("adpId", adpcust);

        message = json.toString();
        return message;
    }

我只想验证 customerIdsrctable 不是空值,这是我的 dto

@Entity
@Table(name="all_customer_hist")
public class AllCustomerHist {
    @Column(name = "REFF_FLAG")
    private String reffFlag;
    @Column(name = "REFF_ID", precision = 19, scale = 0)
    private BigDecimal reffId;
    @Column(name = "LAST_UPDATED_DATE")
    private Date lastUpdatedDate;
    @Column(name = "CREATED_DATE")
    private Date createdDate;
    @Column(name = "CUSTOMER_ID", length = 255)
    private String customerId;
    @Column(name = "NAME", length = 255)
    private String name;
    @Column(name = "DOB", length = 255)
    private String dob;
    @Column(name = "BIRTH_PLACE", length = 255)
    private String birthPlace;
    @Column(name = "GENDER", length = 255)
    private String gender;
    @Column(name = "RELIGION", length = 255)
    private String religion;
    @Column(name = "EDUCATION", length = 255)
    private String education;
    @Column(name = "EMPLOYEE_TYPE", length = 255)
    private String employeeType;
    @Column(name = "MARITAL_STATUS", length = 255)
    private String maritalStatus;
    @Column(name = "ADDRESS", length = 300)
    private String address;
    @Column(name = "CITY", length = 255)
    private String city;
    @Column(name = "KECAMATAN", length = 255)
    private String kecamatan;
    @Column(name = "KELURAHAN", length = 255)
    private String kelurahan;
    @Column(name = "ZIP_CODE", length = 255)
    private String zipCode;
    @Column(name = "BPS_CODE", length = 255)
    private String bpsCode;
    @Column(name = "ID_TYPE", length = 255)
    private String idType;
    @Column(name = "ID_NUMBER", length = 255)
    private String idNumber;
    @Column(name = "NPWP", length = 255)
    private String npwp;
    @Column(name = "HOME_PHONE_1", length = 255)
    private String homePhone1;
    @Column(name = "HOME_PHONE_2", length = 255)
    private String homePhone2;
    @Column(name = "HOME_PHONE_3", length = 255)
    private String homePhone3;
    @Column(name = "HOME_PHONE_4", length = 255)
    private String homePhone4;
    @Column(name = "HOME_PHONE_5", length = 255)
    private String homePhone5;
    @Column(name = "OFFICE_PHONE_1", length = 255)
    private String officePhone1;
    @Column(name = "OFFICE_PHONE_2", length = 255)
    private String officePhone2;
    @Column(name = "OFFICE_PHONE_3", length = 255)
    private String officePhone3;
    @Column(name = "OFFICE_PHONE_4", length = 255)
    private String officePhone4;
    @Column(name = "OFFICE_PHONE_5", length = 255)
    private String officePhone5;
    @Column(name = "MOBILE_PHONE_1", length = 255)
    private String mobilePhone1;
    @Column(name = "MOBILE_PHONE_2", length = 255)
    private String mobilePhone2;
    @Column(name = "MOBILE_PHONE_3", length = 255)
    private String mobilePhone3;
    @Column(name = "MOBILE_PHONE_4", length = 255)
    private String mobilePhone4;
    @Column(name = "MOBILE_PHONE_5", length = 255)
    private String mobilePhone5;
    @Column(name = "FAX_NUMBER_1", length = 255)
    private String faxNumber1;
    @Column(name = "FAX_NUMBER_2", length = 255)
    private String faxNumber2;
    @Column(name = "EMAIL_1", length = 255)
    private String email1;
    @Column(name = "EMAIL_2", length = 255)
    private String email2;
    @Column(name = "EMAIL_3", length = 255)
    private String email3;
    @Column(name = "SRCTABLE", length = 255)
    private String srctable;
    @Column(name = "ADP_ID", precision = 19, scale = 0)
    private BigDecimal adpId;
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO, generator="my_entity_seq_gen")
    @SequenceGenerator(name="my_entity_seq_gen", sequenceName="SYSTEMID")
    @Column(name = "SYSTEM_ID", precision = 19, scale = 0)
    private BigDecimal systemId;

    //Release 1.2
    @Column(name = "NAME_RAW", length = 255)
    private String nameRaw;
    @Column(name = "CUSTOMER_TITLE", length = 8)
    private String customerTitle;
    @Column(name = "GENDERTITLE", length = 8)
    private String gendertitle;





    public String getNameRaw() {
        return nameRaw;
    }


    public void setNameRaw(String nameRaw) {
        this.nameRaw = nameRaw;
    }


    public String getCustomerTitle() {
        return customerTitle;
    }


    public void setCustomerTitle(String customerTitle) {
        this.customerTitle = customerTitle;
    }


    public String getGendertitle() {
        return gendertitle;
    }


    public void setGendertitle(String gendertitle) {
        this.gendertitle = gendertitle;
    }


    public String getReffFlag() {
        return reffFlag;
    }


    public void setReffFlag(String reffFlag) {
        this.reffFlag = reffFlag;
    }


    public BigDecimal getReffId() {
        return reffId;
    }


    public void setReffId(BigDecimal reffId) {
        this.reffId = reffId;
    }


    public Date getLastUpdatedDate() {
        return lastUpdatedDate;
    }


    public void setLastUpdatedDate(Date lastUpdatedDate) {
        this.lastUpdatedDate = lastUpdatedDate;
    }


    public Date getCreatedDate() {
        return createdDate;
    }


    public void setCreatedDate(Date createdDate) {
        this.createdDate = createdDate;
    }


    public String getCustomerId() {
        return customerId;
    }


    public void setCustomerId(String customerId) {
        this.customerId = customerId;
    }


    public String getName() {
        return name;
    }


    public void setName(String name) {
        this.name = name;
    }


    public String getDob() {
        return dob;
    }


    public void setDob(String dob) {
        this.dob = dob;
    }


    public String getBirthPlace() {
        return birthPlace;
    }


    public void setBirthPlace(String birthPlace) {
        this.birthPlace = birthPlace;
    }


    public String getGender() {
        return gender;
    }


    public void setGender(String gender) {
        this.gender = gender;
    }


    public String getReligion() {
        return religion;
    }


    public void setReligion(String religion) {
        this.religion = religion;
    }


    public String getEducation() {
        return education;
    }


    public void setEducation(String education) {
        this.education = education;
    }


    public String getEmployeeType() {
        return employeeType;
    }


    public void setEmployeeType(String employeeType) {
        this.employeeType = employeeType;
    }


    public String getMaritalStatus() {
        return maritalStatus;
    }


    public void setMaritalStatus(String maritalStatus) {
        this.maritalStatus = maritalStatus;
    }


    public String getAddress() {
        return address;
    }


    public void setAddress(String address) {
        this.address = address;
    }


    public String getCity() {
        return city;
    }


    public void setCity(String city) {
        this.city = city;
    }


    public String getKecamatan() {
        return kecamatan;
    }


    public void setKecamatan(String kecamatan) {
        this.kecamatan = kecamatan;
    }


    public String getKelurahan() {
        return kelurahan;
    }


    public void setKelurahan(String kelurahan) {
        this.kelurahan = kelurahan;
    }


    public String getZipCode() {
        return zipCode;
    }


    public void setZipCode(String zipCode) {
        this.zipCode = zipCode;
    }


    public String getBpsCode() {
        return bpsCode;
    }


    public void setBpsCode(String bpsCode) {
        this.bpsCode = bpsCode;
    }


    public String getIdType() {
        return idType;
    }


    public void setIdType(String idType) {
        this.idType = idType;
    }


    public String getIdNumber() {
        return idNumber;
    }


    public void setIdNumber(String idNumber) {
        this.idNumber = idNumber;
    }


    public String getNpwp() {
        return npwp;
    }


    public void setNpwp(String npwp) {
        this.npwp = npwp;
    }


    public String getHomePhone1() {
        return homePhone1;
    }


    public void setHomePhone1(String homePhone1) {
        this.homePhone1 = homePhone1;
    }


    public String getHomePhone2() {
        return homePhone2;
    }


    public void setHomePhone2(String homePhone2) {
        this.homePhone2 = homePhone2;
    }


    public String getHomePhone3() {
        return homePhone3;
    }


    public void setHomePhone3(String homePhone3) {
        this.homePhone3 = homePhone3;
    }


    public String getHomePhone4() {
        return homePhone4;
    }


    public void setHomePhone4(String homePhone4) {
        this.homePhone4 = homePhone4;
    }


    public String getHomePhone5() {
        return homePhone5;
    }


    public void setHomePhone5(String homePhone5) {
        this.homePhone5 = homePhone5;
    }


    public String getOfficePhone1() {
        return officePhone1;
    }


    public void setOfficePhone1(String officePhone1) {
        this.officePhone1 = officePhone1;
    }


    public String getOfficePhone2() {
        return officePhone2;
    }


    public void setOfficePhone2(String officePhone2) {
        this.officePhone2 = officePhone2;
    }


    public String getOfficePhone3() {
        return officePhone3;
    }


    public void setOfficePhone3(String officePhone3) {
        this.officePhone3 = officePhone3;
    }


    public String getOfficePhone4() {
        return officePhone4;
    }


    public void setOfficePhone4(String officePhone4) {
        this.officePhone4 = officePhone4;
    }


    public String getOfficePhone5() {
        return officePhone5;
    }


    public void setOfficePhone5(String officePhone5) {
        this.officePhone5 = officePhone5;
    }


    public String getMobilePhone1() {
        return mobilePhone1;
    }


    public void setMobilePhone1(String mobilePhone1) {
        this.mobilePhone1 = mobilePhone1;
    }


    public String getMobilePhone2() {
        return mobilePhone2;
    }


    public void setMobilePhone2(String mobilePhone2) {
        this.mobilePhone2 = mobilePhone2;
    }


    public String getMobilePhone3() {
        return mobilePhone3;
    }


    public void setMobilePhone3(String mobilePhone3) {
        this.mobilePhone3 = mobilePhone3;
    }


    public String getMobilePhone4() {
        return mobilePhone4;
    }


    public void setMobilePhone4(String mobilePhone4) {
        this.mobilePhone4 = mobilePhone4;
    }


    public String getMobilePhone5() {
        return mobilePhone5;
    }


    public void setMobilePhone5(String mobilePhone5) {
        this.mobilePhone5 = mobilePhone5;
    }


    public String getFaxNumber1() {
        return faxNumber1;
    }


    public void setFaxNumber1(String faxNumber1) {
        this.faxNumber1 = faxNumber1;
    }


    public String getFaxNumber2() {
        return faxNumber2;
    }


    public void setFaxNumber2(String faxNumber2) {
        this.faxNumber2 = faxNumber2;
    }


    public String getEmail1() {
        return email1;
    }


    public void setEmail1(String email1) {
        this.email1 = email1;
    }


    public String getEmail2() {
        return email2;
    }


    public void setEmail2(String email2) {
        this.email2 = email2;
    }


    public String getEmail3() {
        return email3;
    }


    public void setEmail3(String email3) {
        this.email3 = email3;
    }


    public String getSrctable() {
        return srctable;
    }


    public void setSrctable(String srctable) {
        this.srctable = srctable;
    }


    public BigDecimal getAdpId() {
        return adpId;
    }


    public void setAdpId(BigDecimal adpId) {
        this.adpId = adpId;
    }


    public BigDecimal getSystemId() {
        return systemId;
    }


    public void setSystemId(BigDecimal systemId) {
        this.systemId = systemId;
    }

    public AllCustomerHist(){}

    public AllCustomerHist(String reffFlag, BigDecimal reffId, Date lastUpdatedDate, Date createdDate,
            String customerId, String name, String dob, String birthPlace, String gender, String religion,
            String education, String employeeType, String maritalStatus, String address, String city, String kecamatan,
            String kelurahan, String zipCode, String bpsCode, String idType, String idNumber, String npwp,
            String homePhone1, String homePhone2, String homePhone3, String homePhone4, String homePhone5,
            String officePhone1, String officePhone2, String officePhone3, String officePhone4, String officePhone5,
            String mobilePhone1, String mobilePhone2, String mobilePhone3, String mobilePhone4, String mobilePhone5,
            String faxNumber1, String faxNumber2, String email1, String email2, String email3, String srctable,
            BigDecimal adpId, BigDecimal systemId, String nameRaw, String customerTitle, String gendertitle) {
        super();
        this.reffFlag = reffFlag;
        this.reffId = reffId;
        this.lastUpdatedDate = lastUpdatedDate;
        this.createdDate = createdDate;
        this.customerId = customerId;
        this.name = name;
        this.dob = dob;
        this.birthPlace = birthPlace;
        this.gender = gender;
        this.religion = religion;
        this.education = education;
        this.employeeType = employeeType;
        this.maritalStatus = maritalStatus;
        this.address = address;
        this.city = city;
        this.kecamatan = kecamatan;
        this.kelurahan = kelurahan;
        this.zipCode = zipCode;
        this.bpsCode = bpsCode;
        this.idType = idType;
        this.idNumber = idNumber;
        this.npwp = npwp;
        this.homePhone1 = homePhone1;
        this.homePhone2 = homePhone2;
        this.homePhone3 = homePhone3;
        this.homePhone4 = homePhone4;
        this.homePhone5 = homePhone5;
        this.officePhone1 = officePhone1;
        this.officePhone2 = officePhone2;
        this.officePhone3 = officePhone3;
        this.officePhone4 = officePhone4;
        this.officePhone5 = officePhone5;
        this.mobilePhone1 = mobilePhone1;
        this.mobilePhone2 = mobilePhone2;
        this.mobilePhone3 = mobilePhone3;
        this.mobilePhone4 = mobilePhone4;
        this.mobilePhone5 = mobilePhone5;
        this.faxNumber1 = faxNumber1;
        this.faxNumber2 = faxNumber2;
        this.email1 = email1;
        this.email2 = email2;
        this.email3 = email3;
        this.srctable = srctable;
        this.adpId = adpId;
        this.systemId = systemId;
        this.nameRaw = nameRaw;
        this.customerTitle = customerTitle;
        this.gendertitle = gendertitle;
    }
}

我的目标是,当这个 json 被抛出时:

{
    "srctable":null,
    "customerId":null
    }

它应该返回消息,告知消费者 srctable 和 customerId 不能为空,但我不想在我的 dto 中添加 @NotNull,因为 customerId 和 srctable 对于其他进程可能为空。

谢谢你,等待你的帮助:D

【问题讨论】:

  • 在这种情况下,您始终可以使用if-else 条件!
  • 1.您粘贴的代码包含太多数据 - 您不需要整个 AllCustomerHist 类来说明您的问题。 2. 将您的 DB 模型绑定到 API 模型几乎总是一个非常糟糕的选择。 3. 你想要的其实是域级别的验证,不应该在控制器内部执行。
  • @RafalG。实际上我有模型层、dao 层和服务层,我真的不明白“将你的 DB 模型绑定到 API 模型几乎总是一个非常糟糕的选择”你能详细解释一下吗?还有什么是域级验证?应该在哪里执行?因为请求是从控制器处理的

标签: java spring hibernate rest


【解决方案1】:

是时候引入 DTO(Data Transfer Object)并在控制器中使用它了。猜猜您不需要某些字段,例如实体的 lastUpdatedDate 未在搜索逻辑中使用。

您需要添加一个带有必要字段的自定义 POJO,并使用 @NotNull 和所有其他必要的验证检查对其进行注释。您可能还需要一个转换器,以便在必要时将 DTO 转换为实体。

【讨论】:

  • 是的,不是此方法所需的所有字段,我应该创建新的 dto 吗?对于添加带有必要字段的自定义 pojo 并使用 @NotNull 和所有其他必要的验证检查对其进行注释的部分,我并没有真正理解它。您可能还需要一个转换器来在必要时将 DTO 转换为实体。你能更详细地解释一下吗?谢谢
  • 是的。好处 - 要传递的信息更少,拆分模型(实体)和控制器(DTO),您需要的任何验证(额外转换可能包括例如从字符串表示到类的转换。例如对于日期字段,我可以传递值“现在”或“昨天”并添加绑定逻辑以转换为 Date 类)。
  • 您对此有什么好的参考吗?我在 java 的春天很新
  • baeldung.com/… 看看这个
  • 你好,我已经有了entity、dao、service层,不修改dao&entity层可以加dto层吗?我只需要使用对象映射器为 dto 修改休息控制器吗?
【解决方案2】:

javax.validation.Valid 中的@Valid@NotNull 注释一起使用。

另外,我想推荐一篇博客来验证REST API here

【讨论】:

  • 我不想在我的实体对象中使用@Notnull 注释,因为并非所有过程都需要字段为空/不为空,谢谢分享:)
猜你喜欢
  • 2020-11-13
  • 2012-11-06
  • 2015-07-28
  • 2012-06-19
  • 2016-02-20
  • 1970-01-01
  • 2018-10-25
  • 2011-04-05
  • 2013-06-11
相关资源
最近更新 更多