У меня есть следующие классы:
public class Container {
private String name;
private Data data;
}
public class Data {
private Long id;
}
Когда я сериализую Container
класс, используя Jackson, я получаю
{"name":"Some name","data":{"id":1}}
Но мне нужен результат:
{"name":"Some name","id":1}
Возможно ли (без добавления метода Container.getDataId()
)? Если да, то как это сделать?
Обновление
Я попытался создать пользовательский JsonSerializer<Data>
, но результат был таким же, как раньше
public class JsonDataSerializer extends JsonSerializer<Data> {
private static Logger logger = Logger.getLogger(JsonDataSerializer.class);
@Override
public void serialize(Data value, JsonGenerator jgen,
SerializerProvider provider)
throws IOException,JsonProcessingException {
Long id = (value.getId() == null) ? 0l : value.getId();
jgen.writeStartObject();
jgen.writeNumberField("id", id);
jgen.writeEndObject();
logger.debug("Data id " + id + " serialized to JSON.");
}
}
Я также попытался добавить аннотацию @JsonSerialize
выше класса Data
, а затем выше getter в классе Container
. Как я уже упоминал, без каких-либо успехов. Мой сериализатор используется, сообщение журнала регистрации.
обновление 2
Когда я удаляю writeStartObject()
и writeEndObject()
, тогда JSON не возвращается, только HTTP Status 500
ошибка и исключение не исключается, кроме того, что я нашел в отладочном выходе.
DEBUG: org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver - Resolving exception from handler [[email protected]]: org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON: Can not write a field name, expecting a value; nested exception is org.codehaus.jackson.JsonGenerationException: Can not write a field name, expecting a value
DEBUG: org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver - Resolving exception from handler [[email protected]]: org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON: Can not write a field name, expecting a value; nested exception is org.codehaus.jackson.JsonGenerationException: Can not write a field name, expecting a value
DEBUG: org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver - Resolving exception from handler [[email protected]]: org.springframework.http.converter.HttpMessageNotWritableException: Could not write JSON: Can not write a field name, expecting a value; nested exception is org.codehaus.jackson.JsonGenerationException: Can not write a field name, expecting a value