12
Jackson kullanarak bir nesneye ham JSON'u nasıl dahil edebilirim?
Nesne Jackson kullanılarak (de) serileştirildiğinde bir Java nesnesinin içine ham JSON eklemeye çalışıyorum. Bu işlevi test etmek için aşağıdaki testi yazdım: public static class Pojo { public String foo; @JsonRawValue public String bar; } @Test public void test() throws JsonGenerationException, JsonMappingException, IOException { String foo = "one"; String bar = …
103
java
json
inner-classes
jackson