[Spring] Response Object JSON Null 값 안보내는 방법(message-converters)

GilLog·2021년 7월 9일
0

Spring

목록 보기
12/22

🙆‍♂️ import 🙇‍♂️

SPRING RESPONSE OBJECT 값 중에서 NULL 인 값은 안보내는 방법[YENA WORLD]

Message-Converters

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로 전송할 수 있다.

profile
🚀 기록보단 길록을 20.10 ~ 22.02 ⭐ Move To : https://gil-log.github.io/

0개의 댓글