解决spring mvc中 日期类 数据传递出现错误的400异常

在使用spring mvc的过程中,使用到了日期类 Date 但是在传递数据的时候出现了 状态码为 400 的错误,说明传的数据类型不匹配。

下面是异常错误说明:

Field error in object 'employee' on field 'date': rejected value [2018-10-22]; codes [typeMismatch.employee.date,typeMismatch.date,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [employee.date,date]; arguments []; default message [date]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'date'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [java.util.Date] for value '2018-10-22'; nested exception is java.lang.IllegalArgumentException]]

分析,在spring mvc 自动转换的过程中,不能将 string 转换成 date .

 

解决办法:

在实体类的日期字段的get和set方法上加注解。

在使用注解之前需要导入jar包:

    
      com.fasterxml.jackson.core
      jackson-annotations
      2.9.0
    

解决方案: 

    private Date date;

    /**
     * 1.	接收日期格式使用@DateTimeFormat(yyyy-MM-dd),特别注意千万不要把后台传参与前台接收参数搞混淆:
     * 2.	后台->前台:@JsonFormat(pattern="yyyy-MM-dd hh:mm:ssS",timezone="GMT+8")
     * 3.	前台->后台:@DateTimeFormat(pattern="yyyy-MM-dd")
     */

    // 后台到前台
    @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss",timezone = "GMT+8")
    public Date getDate() {
        return date;
    }

    // 前台到后台   接收参数
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    public void setDate(Date date) {
        this.date = date;
    }

 

 

你可能感兴趣的:(spring,mvc)