日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

Field error in object ‘xxx‘ on field ‘xxx‘: rejected value [xxx]

發布時間:2023/12/20 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Field error in object ‘xxx‘ on field ‘xxx‘: rejected value [xxx] 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章首發于個人博客,歡迎訪問關注:https://www.lin2j.tech

GET 請求中的日期參數在使用 @JsonFormat 格式化時間后報錯

@ApiModelProperty("發布時間-開始") @JsonFormat(pattern = DatePattern.NORM_DATE_PATTERN,timezone = Constants.GMT8) private Date startPublishTime; org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors Field error in object 'algoInfoQo' on field 'startPublishTime': rejected value [2021-03-29]; codes [typeMismatch.algoInfoQo.startPublishTime,typeMismatch.startPublishTime,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [algoInfoQo.startPublishTime,startPublishTime]; arguments []; default message [startPublishTime]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'startPublishTime'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@io.swagger.annotations.ApiModelProperty @com.alibaba.fastjson.annotation.JSONField java.util.Date] for value '2021-03-29'; nested exception is java.lang.IllegalArgumentException]at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.resolveArgument(ModelAttributeMethodProcessor.java:164) ~[spring-web-5.1.8.RELEASE.jar:5.1.8.RELEASE]

增加 @DateTimeFormat 標注即可。

@ApiModelProperty("發布時間-開始") @DateTimeFormat(pattern = DatePattern.NORM_DATE_PATTERN, iso = DateTimeFormat.ISO.DATE) @JsonFormat(pattern = DatePattern.NORM_DATE_PATTERN,timezone = Constants.GMT8) private Date startPublishTime;

總結

以上是生活随笔為你收集整理的Field error in object ‘xxx‘ on field ‘xxx‘: rejected value [xxx]的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。