1 public class User implements Serializable { 2 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") 3 @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") 4 private LocalDateTime timeTamp; 5 }
工作写时间格式转换时遇到java报could not be parsed at index 5 的错误,通过百度后得到以下解决方案。
Model实体内属性timeTamp加上注解@JsonFormat和@DateTimeFormat
第一个注解@JsonFormat是解析数据库传过来的时间,将其转换为自己定义的格式(即pattern)后发送到网页接收;@DateTimeFormat为解析前端json发送的时间字符串将其转为正确的格式。
在调试接口的时候,前端的Json时间数据需要为正确的"yyyy-mm-dd HH:MM:SS"即”2020-04-28 17:53:02“才能被正确解析。
List<User> List = JSONArray.parseArray(jsonData.getJSONArray("前端发送过来的集合名").toJSONString(),User.class);
这里用的是Fastjson里的JSONArray类。这一步就是将前端的包含集合的json正确解析至自己定义的集合了