xml 在XML配置中配置jackson对象映射器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 在XML配置中配置jackson对象映射器相关的知识,希望对你有一定的参考价值。

<beans xmlns:mvc="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://www.springframework.org/schema/beans" 
    xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="
    http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc.xsd
    http://www.springframework.org/schema/util
    http://www.springframework.org/schema/util/spring-util.xsd">


    <mvc:message-converters>
        <!-- Set the mapper property -->

        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="objectMapper" ref="objMapper" />
        </bean>
    </mvc:message-converters>

    <!-- Set the constant(s) of the mapper configuration to enable -->

    <bean id="objMapper" class="org.springframework.http.converter.json.Jackson2ObjectMapperFactoryBean">
        <property name="featuresToEnable">
            <array>
                <util:constant static-field="com.fasterxml.jackson.core.JsonParser.Feature.ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER" />
            </array>
        </property>
    </bean>
</beans>

以上是关于xml 在XML配置中配置jackson对象映射器的主要内容,如果未能解决你的问题,请参考以下文章

使用 RestTemplate 时如何配置内部 Jackson 映射器?

[转] MyBatis的XxxMapper.xml 映射器的详解

xml mybatis映射器配置

MyBatis配置文件--mappers映射器

SpringMVC的组件解析执行流程以及XML配置解析和

SpringMVC的组件解析执行流程以及XML配置解析和