解决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包:

    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>2.9.0</version>
    </dependency>

解决方案: 

    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;
    }

 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值