springmvc json字符串传输配置

来源:互联网 发布:淘宝举报卖家卖违法 编辑:程序博客网 时间:2024/06/05 17:09

配置springmvc中json字符串转换,以及对传出的数据进行限制或者自动转换

1.maven 或者jar导入方式

 <dependency>      <groupId>org.codehaus.jackson</groupId>      <artifactId>jackson-mapper-asl</artifactId>      <version>1.9.13</version>    </dependency>    <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->    <dependency>      <groupId>com.fasterxml.jackson.core</groupId>      <artifactId>jackson-core</artifactId>      <version>2.8.0</version>    </dependency>    <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->    <dependency>      <groupId>com.fasterxml.jackson.core</groupId>      <artifactId>jackson-databind</artifactId>      <version>2.8.0</version>    </dependency>
2.spring_mvc(文件名称看自己项目设置,主配置文件)  中配置

<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>                        <!-- 输出key时是否使用双引号 -->                        <value>QuoteFieldNames</value>                        <!-- 是否输出值为null的字段 -->                        <value>WriteMapNullValue</value>                        <!-- 数值字段如果为null,输出为0,而非null -->                        <value>WriteNullNumberAsZero</value>                        <!-- List字段如果为null,输出为[],而非null -->                        <value>WriteNullListAsEmpty</value>                        <!-- 字符类型字段如果为null,输出为"",而非null -->                        <value>WriteNullStringAsEmpty</value>                        <!-- Boolean字段如果为null,输出为false,而非null -->                        <value>WriteNullBooleanAsFalse</value>                        <value>WriteDateUseDateFormat</value>                    </list>                </property>            </bean>        </mvc:message-converters>    </mvc:annotation-driven>
3.另外的一种jackson配置,jar之前的maven配置中有

 <!-- 启动SpringMVC的注解功能,完成请求和注解POJO的映射 -->    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">        <property name="messageConverters">            <list>                <ref bean="mappingJacksonHttpMessageConverter"/> <!-- 在控制器前加@reponsebody标签才能使用JSON转换器 jackson的方式 -->            </list><!-- 也可以使用@restcontroller 效果等同于@reponsebody和@Contrller-->        </property>    </bean>



0 0
原创粉丝点击