在 Spring JMS 消息中配置 JSON 输出

Configure JSON output in Spring JMS messages

我想要什么

在 Spring Boot 1.5.2 项目中,我通过 JmsTemplate#convertAndSend 向某些 JMS (ActiveMQ) queues/topics 发送 JSON 消息。我将 Java 8 与 LocalDateLocalDateTime 的某些实例一起使用。我想稍微更改 JSON 输出:

默认情况下,JSON 全部在一行中结束,日期/时间戳将转换为字段格式,例如:

"startDate" : { "year" : 2017, "month" : "MARCH", "era" : "CE", "dayOfYear" : 64, "dayOfWeek" : "SUNDAY", "leapYear" : false, "dayOfMonth" : 5, "monthValue" : 3, "chronology" : { "calendarType" : "iso8601", "id" : "ISO" } }

我试过的

我已经将 jackson-datatype-jsr310 添加到项目依赖项中,并且我还设置了

spring.jackson.serialization.indent-output=true
spring.jackson.serialization.write_dates_as_timestamps=false

application.properties 中。行为没有变化。

然后我尝试修改消息转换器的初始化以包括这些设置:

@Bean
@Primary
public MessageConverter jacksonJmsMessageConverter() {
    MappingJackson2MessageConverter converter = new MappingJackson2MessageConverter();
    converter.setTargetType(MessageType.TEXT);
    converter.setTypeIdPropertyName("_type");

    ObjectMapper objectMapper = new ObjectMapper();
    // default settings for MappingJackson2MessageConverter
    objectMapper.configure(MapperFeature.DEFAULT_VIEW_INCLUSION, false);
    objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
    // add settings I want
    objectMapper.enable(SerializationFeature.INDENT_OUTPUT);
    objectMapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
    converter.setObjectMapper(objectMapper);

    return converter;
}

但行为仍然没有变化。

如何自定义 JSON 输出,如上所述?

像这样进一步配置对象映射器:

    JavaTimeModule timeModule = new JavaTimeModule();
    timeModule.addSerializer(LocalDate.class, 
        new LocalDateSerializer(DateTimeFormatter.ISO_LOCAL_DATE));
    timeModule.addSerializer(LocalDateTime.class, 
        new LocalDateTimeSerializer(DateTimeFormatter.ISO_LOCAL_DATE_TIME));
    objectMapper.registerModule(timeModule);

与这里的答案一致: