如何使用Locale with Jackson和Spring Boot格式化日期

时间:2017-07-13 19:20:49

标签: json date spring-boot jackson datetime-format

我有一个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注释中的静态定义格式不是解决方案。

0 个答案:

没有答案