0
當使用傑克遜默認的作家,如下面:手動實施傑克遜系列化忽略註釋
protected static String getAsJson(Class clazz, Object object) throws IOException {
ObjectWriter ow = objectMapper.writerWithType(clazz);
return ow.writeValueAsString(object);
註釋,比如下面被忽略:
@JsonDeserialize(using = LocalDateDeserializer.class)
@JsonSerialize(using = LocalDateSerializer.class)
@Type(type = "org.jadira.usertype.dateandtime.joda.PersistentLocalDate")
private LocalDate date;
我如何可以手動執行默認傑克遜系列化那用於彈簧@Responsebody
(它可以與註釋一起使用)?
您是否正在使用Mapper註冊自定義De/Serializer,如此處所述.. http://wiki.fasterxml.com/JacksonHowToCustomSerializers –
忘記提問:忽略如何?什麼不起作用? – StaxMan
@StaxMan the jsonserialize annotation,上面的鏈接固定了我,謝謝反正 – NimChimpsky