fastjson默认为springmvc的json转换器

前端之家收集整理的这篇文章主要介绍了fastjson默认为springmvc的json转换器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<!-- 启用默认配置 -->
    <mvc:annotation-driven>
        <mvc:message-converters register-defaults="true">
            <!-- 配置Fastjson支持 -->
            <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/html;charset=UTF-8</value>
                        <value>application/json</value>
                    </list>
                </property>
                <property name="features">
                    <list>
                        <value>WriteMapNullValue</value>
                        <value>QuoteFieldNames</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters
原文链接:https://www.f2er.com/springmvc/289223.html

猜你在找的SpringMVC相关文章