参数校验异常:Failed to convert property value of type 'java.lang.String[]' to required type 'java.util.Date' for property 'transDate'; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @javax.persistence.Id @org.jeecgframework.poi.excel.annotation.Excel @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value '"2023-02-15T11:48:18.903Z"'; nested exception is java.lang.IllegalArgumentException: Parse attempt failed for value ["2023-02-15T11:48:18.903Z"]<br>
时间: 2023-12-15 16:03:17 浏览: 359
Springmvc : Failed to convert property value of type 'java.lang.String' to int
5星 · 资源好评率100%
这个异常是由于参数校验时,将一个类型为 'java.lang.String[]' 的属性值转换成了类型 'java.util.Date',而转换失败导致的。具体的异常信息是 'ConversionFailedException',其中的详细信息是 'Failed to convert from type [java.lang.String] to type [@com.fasterxml.jackson.annotation.JsonFormat @javax.persistence.Id @org.jeecgframework.poi.excel.annotation.Excel @org.springframework.format.annotation.DateTimeFormat @io.swagger.annotations.ApiModelProperty java.util.Date] for value "2023-02-15T11:48:18.903Z"'。最后的异常信息是 'Parse attempt failed for value ["2023-02-15T11:48:18.903Z"]'。这个异常通常是由于日期格式不符合要求导致的。你可以检查一下传入的日期字符串是否符合要求的格式,或者尝试使用其他方式进行日期转换。
阅读全文