Map 내의 null 값과 bean 내의 null 필드가 Jackson을 통해 직렬화되지 않도록 하는 방법
나는 a를 가지고 있다Map<String,Foo> foosMap
시리얼라이제이션 프로세스에 대해서, 다음의 2개의 설정을 실시합니다.
- Map에는 null 값과 null 키를 많이 포함할 수 있으며 null을 직렬화하고 싶지 않습니다.
- 직렬화되는 Foo의 경우 Foo 내에서 참조되는 null 개체를 직렬화하고 싶지 않습니다.
이를 실현하는 가장 좋은 방법은 무엇입니까?저는 프로젝트에서 jackson-core1.9와 jackson-mapper1.9를 사용하고 있습니다.
원본을 바꾸는 것이 합리적이라면Map
데이터 구조를 시리얼화함으로써 시리얼화하려는 실제 가치를 더 잘 나타낼 수 있습니다.그것은 아마도 적절한 접근법일 것입니다.그렇게 하면, 필요한 잭슨 구성의 양을 줄일 수 있습니다.예를 들어, 이 명령어를 삭제해 주세요.null
가능한 경우 잭슨에게 전화를 걸기 전에 키 입력을 입력해 주세요.그 말은...
시리얼화를 억제하려면Map
값이 null인 엔트리:
잭슨 2.9 이전
아직 이용할 수 있다WRITE_NULL_MAP_VALUES
단, 다음과 같이 이동합니다.
mapper.configure(SerializationFeature.WRITE_NULL_MAP_VALUES, false);
잭슨 2.9 이후
그WRITE_NULL_MAP_VALUES
는 권장되지 않습니다.다음과 동등한 것을 사용할 수 있습니다.
mapper.setDefaultPropertyInclusion(
JsonInclude.Value.construct(Include.ALWAYS, Include.NON_NULL))
null 값을 사용하여 속성을 시리얼화하지 않도록 하려면 를 직접 구성하거나 주석을 사용합니다.
mapper.setSerializationInclusion(Include.NON_NULL);
또는 다음과 같이 입력합니다.
@JsonInclude(Include.NON_NULL)
class Foo
{
public String bar;
Foo(String bar)
{
this.bar = bar;
}
}
null을 처리하려면Map
키, 커스텀 시리얼화가 필요한 것으로 알고 있습니다.
시리얼화를 위한 간단한 접근법null
키를 빈 문자열로 지정합니다(앞으로 설명한2개의 설정의 완전한 예를 포함한다).
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.databind.SerializerProvider;
public class JacksonFoo
{
public static void main(String[] args) throws Exception
{
Map<String, Foo> foos = new HashMap<String, Foo>();
foos.put("foo1", new Foo("foo1"));
foos.put("foo2", new Foo(null));
foos.put("foo3", null);
foos.put(null, new Foo("foo4"));
// System.out.println(new ObjectMapper().writeValueAsString(foos));
// Exception: Null key for a Map not allowed in JSON (use a converting NullKeySerializer?)
ObjectMapper mapper = new ObjectMapper();
mapper.configure(SerializationFeature.WRITE_NULL_MAP_VALUES, false);
mapper.setSerializationInclusion(Include.NON_NULL);
mapper.getSerializerProvider().setNullKeySerializer(new MyNullKeySerializer());
System.out.println(mapper.writeValueAsString(foos));
// output:
// {"":{"bar":"foo4"},"foo2":{},"foo1":{"bar":"foo1"}}
}
}
class MyNullKeySerializer extends JsonSerializer<Object>
{
@Override
public void serialize(Object nullKey, JsonGenerator jsonGenerator, SerializerProvider unused)
throws IOException, JsonProcessingException
{
jsonGenerator.writeFieldName("");
}
}
class Foo
{
public String bar;
Foo(String bar)
{
this.bar = bar;
}
}
시리얼화를 억제하려면Map
의 엔트리null
추가 커스텀 시리얼라이제이션 처리가 필요합니다.
Jackson 버전 2.0 미만의 경우 시리얼화되는 클래스에서 다음 주석을 사용합니다.
@JsonSerialize(include=JsonSerialize.Inclusion.NON_NULL)
해답은 좀 오래된 것 같은데, 내가 한 일은 이 매퍼를 사용하여 변환하는 것이었다.MAP
ObjectMapper mapper = new ObjectMapper().configure(SerializationConfig.Feature.WRITE_NULL_MAP_VALUES, false);
단출한 사람Map
:
Map<String, Object> user = new HashMap<String,Object>(); user.put( "id", teklif.getAccount().getId() ); user.put( "fname", teklif.getAccount().getFname()); user.put( "lname", teklif.getAccount().getLname()); user.put( "email", teklif.getAccount().getEmail()); user.put( "test", null);
예를 들어 다음과 같이 사용합니다.
String json = mapper.writeValueAsString(user);
나의 솔루션, 희망의 도움
커스텀 오브젝트 맵퍼 및 spring xml로 설정(메시지 대류 등록)
public class PyResponseConfigObjectMapper extends ObjectMapper {
public PyResponseConfigObjectMapper() {
disable(SerializationFeature.WRITE_NULL_MAP_VALUES); //map no_null
setSerializationInclusion(JsonInclude.Include.NON_NULL); // bean no_null
}
}
언급URL : https://stackoverflow.com/questions/11449211/how-to-prevent-null-values-inside-a-map-and-null-fields-inside-a-bean-from-getti
'programing' 카테고리의 다른 글
asp.net MVC 상단에 angular js를 사용하는 이점 (0) | 2023.03.05 |
---|---|
현과 목록을 구별하는 버마교적 방법은 무엇인가요? (0) | 2023.03.05 |
클라이언트 측 Javascript 클럭을 서버 날짜와 동기화하는 가장 좋은 방법 (0) | 2023.03.05 |
스프링 부트에서 여러 디스패처 서블릿/웹 컨텍스트 사용 (0) | 2023.03.05 |
React.js의 OnClick 이벤트 바인딩 (0) | 2023.03.05 |