一切福田,不離方寸,從心而覓,感無不通。

后台LocalDateTime参数的接收问题(Failed to convert value of type ‘java.lang.String‘ to required type ‘java.tim

后台LocalDateTime参数的接收问题(Failed to convert value of type ‘java.lang.String’ to required type ‘java.time.LocalDateTime’)

使用postman测试接口时,发现传递的时间不能够被后端获取,其中postman请求的截图如下:
postman请求的截图controller层接口的方法为:
在这里插入图片描述
报错如下:

在这里插入图片描述

解决方法:

通过@DateTimeFormat注解,去解析前端传入的时间格式字符串然后转化成LocaDateTime的时间类型。注意:格式化的时候,格式需要和前台传入值得格式一致,并且看清楚参数类型到底是LocalDateTime还是LocalTime

在这里插入图片描述

顺便说一下,@JsonFormat:他和@DateTimeFormat正好对应关系,如果我们从DB中取得时间类型数据,想传回前端,并且规定格式,那么就可以使用@JsonFormat(pattern=“yyyy-MM-dd”,timezone = “GMT+8”)
pattern:是你需要转换的时间日期的格式
timezone:是时间设置为东八区,避免时间在转换中有误差

from:后台LocalDateTime参数的接收问题(Failed to convert value of type ‘java.lang.String‘ to required type ‘java.tim_java localdatetime 接收参数为0-CSDN博客