我有一个Spring Boot应用程序,它将GET消息发送到另一个服务器并获取JSON,其中一个字段是这样的:2014-11-07T22:01:45Z
如何使用请求者Locale
格式化此日期?我使用的方法如下:
ResponseEntity<Repository> response = restTemplate.exchange(repoUrlBuilder(owner, repository_name), HttpMethod.GET, entity, Repository.class);
存储库日期字段如下:
@JsonProperty(value="created_at")
Date createdAt;
JsonProperty
注释中的静态定义格式不是解决方案。