Field error in object ‘xxx‘ on field ‘xxx‘: rejected value [xxx]
生活随笔
收集整理的這篇文章主要介紹了
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]的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【蓝队攻防演练思路】From 滴滴蓝军
- 下一篇: C++实现动态规划算法之解决0-1背包问