SPRING RESPONSE OBJECT 값 중에서 NULL 인 값은 안보내는 방법[YENA WORLD]
JSON
으로 ResponseBody
를 통해 JSON
으로 응답을 보낼때,
기본적으로 NULL 값인 요소들도 함께 전송된다.
NULL
이 아닌 요소들만 Response로 전달하고 싶을 경우,
servlet-context.xml
(Spring Dispatcher Server 관련 xml)에 message-converters
를 추가해주면 된다.
<mvc:annotation-driven>
<mvc:message-converters register-defaults="true">
<bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
<property name="objectMapper">
<bean class="com.fasterxml.jackson.databind.ObjectMapper">
<property name="serializationInclusion">
<value type="com.fasterxml.jackson.annotation.JsonInclude.Include">NON_NULL</value>
</property>
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
그럼 NULL
이 아닌 요소만 Response
로 전송할 수 있다.