Jackson を使用すると、特定の .xml のすべての注釈を簡単に無効にできObjectMapper
ます。特定の注釈を 1 つだけ無効にする方法はありますか?
// disable all
ObjectMapper mapper = new ObjectMapper()
mapper.disable(MapperFeature.USE_ANNOTATIONS);
// disable one?
ObjectMapper mapper = new ObjectMapper()
mapper.disable(@JsonIgnore);
を使用し@JacksonAnnotationsInside
て、カスタム Jackson アノテーションを定義しましたが、特定の状況でのみ使用したいと考えています。