web-dev-qa-db-ja.com

Spring Bootを使用してJSON日付フォーマットをフォーマットする方法

私は休息サービスを作成するために春のブーツとグラドルに取り組んでいます。次に、jsonの日付を「yyyy-MM-dd」の形式でフォーマットする必要があります。つまり、フォーマットはdateOfBirth:「16-03-2015」である必要がありますが、「dateOfBirth:-751181400000」を取得しています。以下のコードをApllication.Javaクラスに追加しましたが、目的の出力を取得できません。

@Bean
@ConditionalOnClass({ ObjectMapper.class, Jackson2ObjectMapperBuilder.class })
public Jackson2ObjectMapperBuilder jacksonBuilder()
{ 
    Jackson2ObjectMapperBuilder builder = new Jackson2ObjectMapperBuilder(); 
    builder.indentOutput(true).dateFormat(new SimpleDateFormat("yyyy-MM-dd")); 
    return builder; 
}

そしてApplication.Java:

@Configuration
@Import(SubjectServiceConfig.class)
@EnableAutoConfiguration
@EnableEurekaClient
@ComponentScan({"com.billing"})
@EnableWebMvc
@EnableHypermediaSupport(type = EnableHypermediaSupport.HypermediaType.HAL)
public class Application {
public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
}
}

この問題の解決を手伝ってください。

14
Pramod

Spring Bootでは、application.yml/application.propertiesで次のプロパティを設定することにより、Jacksonが日付をフォーマットするデフォルトの方法を設定できるはずです。

spring.jackson.date-format= # Date format string (e.g. yyyy-MM-dd HH:mm:ss), or a fully-qualified date format class name (e.g. com.fasterxml.jackson.databind.util.ISO8601DateFormat)
21
adam p