postman传参时,解决Date类型参数的格式化问题初体验01
程序员文章站
2022-05-29 18:36:43
...
在使用postman测试接口时,需要的是Date类型的参数,当传入一个yyyy-MM-dd格式的参数时,会出现异常:
下面展示一些 异常片段
。
// 错误
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors
Field error in object 'xxx' on field 'beginAt': rejected value [2018-6-24 21:39:58]; codes [typeMismatch.xxx.beginAt,typeMismatch.beginAt,typeMismatch.java.util.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [xxx.beginAt,beginAt]; arguments []; default message [beginAt]]; default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'beginAt'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.databind.annotation.JsonSerialize java.util.Date] for value '2018-6-24 21:39:58'; nested exception is java.lang.IllegalArgumentException]
会提示Failed to convert property value of type ‘java.lang.String’ to required type ‘java.util.Date’ ;
那么该怎么正确的日期格式的参数呢?
很简单,将输入的日期格式化为“yyyy/MM/dd”格式,例如:
2021/06/24 00:00:00
而不是
2021-06-24 00:00:00
这样就能正确的传入一个时间戳,来入参测试啦~~~:)????????????