SpringMVC 整合fastjson

首先是applicationContext.xml中的相关配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:mvc="http://www.springframework.org/schema/mvc"
  xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemaLocation="http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
            http://www.springframework.org/schema/mvc
            http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.2.xsd">
  <context:component-scan base-package="com.jadyer"/>

  <mvc:annotation-driven>
    <mvc:message-converters register-defaults="true">
      <bean class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
        <property name="supportedMediaTypes" value="text/html;charset=UTF-8"/>
        <property name="features">
          <array>
            <value>WriteMapNullValue</value>
            <value>WriteNullStringAsEmpty</value>
          </array>
        </property>
      </bean>
    </mvc:message-converters>
  </mvc:annotation-driven>

  <!-- fastjson-1.1.41与SpringMVC整合 -->
  <!--
  1)若按照jackson和SpringMVC的整合方式,应按照下面的写法,但测试发现这样会报告"HTTP Status 406"
    The resource identified by this request is only capable of generating responses
    with characteristics not acceptable according to the request "accept" headers.
  2)测试通过的整合方式为上面那样在mvc:annotation-driven里面进行注册
  3)supportedMediaTypes增加[text/html;charset=UTF-8]值,是为了兼容IE6
    否则[application/json]值在IE6中会导致弹出对话框询问是否保存文件,而firefox等高级浏览器会正常打印json字符串
  4)若像下面这样给supportedMediaTypes属性赋两个值[text/html;charset=UTF-8]和[application/json],则[application/json]是无效的
    因为此时应答给浏览器(或者说请求方)的Content-Type头信息都是[text/html;charset=UTF-8],所以给它一个值就行了
    如果给supportedMediaTypes的值为[application/json],则应答给浏览器的Content-Type头信息就是[application/json;charset=UTF-8]
  5)关于features属性,不是serializerFeature,而是features,详见FastJsonHttpMessageConverter.java
    它是用来控制json序列化输出时的一些额外属性,比如说该字段是否输出、输出时key使用单引号还是双引号、key不使用任何引号等等
    QuoteFieldNames----------输出key时是否使用双引号,默认为true
    WriteMapNullValue--------是否输出值为null的字段,默认为false
    WriteNullNumberAsZero----数值字段如果为null,输出为0,而非null
    WriteNullListAsEmpty-----List字段如果为null,输出为[],而非null
    WriteNullStringAsEmpty---字符类型字段如果为null,输出为"",而非null
    WriteNullBooleanAsFalse--Boolean字段如果为null,输出为false,而非null
  6)通常在网上搜到的fastjson和springMVC整合的例子中都像下面注释的代码那样给了两个属性WriteMapNullValue和QuoteFieldNames
    这就表示为json解析器设置QuoteFieldNames和WriteMapNullValue的值为true,即输出时key使用双引号,同时也输出值为null的字段
  7)输出时某字段为String类型,且值为null,此时若需要其输出,且输出值为空字符串,则需同时赋值WriteMapNullValue和WriteNullStringAsEmpty
    经测试,若只赋值WriteNullStringAsEmpty,则不会输出该字段..加上WriteMapNullValue属性后,便输出了,且输出值不是null,而是预期的空字符串
   -->
  <!--
  <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="messageConverters">
      <list>
        <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="serializerFeature">
            <array>
              <value>QuoteFieldNames</value>
              <value>WriteMapNullValue</value>
            </array>
          </property>
        </bean>
      </list>
    </property>
  </bean>
   -->
  <!--
  <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="messageConverters">
      <list>
        <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
          <property name="supportedMediaTypes" value="text/html;charset=UTF-8"/>
        </bean>
      </list>
    </property>
  </bean>
   -->
</beans>
接着是SpringMVC中的Controller
package com.jadyer.controller;

import java.io.IOException;
import java.io.PrintWriter;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.alibaba.fastjson.JSON;
import com.jadyer.model.LoginResult;

@Controller
@RequestMapping(value="/account")
public class AccountController {
  @Resource
  private AccountService accountService;

//  @RequestMapping(value="/login")
//  public String login(String username, String password, HttpServletResponse response) throws IOException{
//      response.setContentType("text/plain; charset=UTF-8");
//      response.setHeader("Cache-Control", "no-cache");
//      response.setHeader("Pragma", "no-cache");
//      response.setDateHeader("Expires", 0);
//      PrintWriter out = response.getWriter();
//      out.write(JSON.toJSONString(accountService.login(username, password)));
//      out.flush();
//      out.close();
//      return null;
//  }
  @ResponseBody
  @RequestMapping(value="/login")
  public LoginResult login(String username, String password){
    LoginResult result = new LoginResult();
    //验签过程暂略....
    result = accountService.login(username, password);
    return result;
  }
}
最后是login()方法的应答实体类LoginResult.java

package com.jadyer.model;

public class LoginResult {
  private String respCode; //应答码
  private String respDesc; //应答描述
  private String userId;   //用户编号
  private String username; //用户名
  private String mobileNo; //用户手机号
  private String integral; //用户拥有的积分
  /*-- 对应的setter和getter略 --*/
}
时间: 2024-10-12 20:39:59

SpringMVC 整合fastjson的相关文章

SpringMVC整合fastjson、easyui 乱码问题

一.框架版本 SpringMVC:3.1.1.RELEASE fastjson:1.2.7 easyui :1.4.5 二.乱码现象 Action中使用@ResponseBody返回Json数据 1.Action返回的数据正常,无乱码现象 2.使用浏览器的开发者模式查看返回值,发现乱码 可以确定乱码问题出现在数据返回到浏览器的过程中 三.解决过程 1.最常规的方法,添加message-converters,添加后如json-lib库可以解决乱码问题,但是fastjson无法解决(未解决) 1 2

SpringMVC整合fastjson,解决中文乱码问题

@RequestMapping添加produces = "text/html;charset=UTF-8",在Controller或Action添加均可(解决问题) 原文地址:https://www.cnblogs.com/gjack/p/8672996.html

SpringMVC整合fastjson-1.1.41

以前用fastjson也只是硬编码,就好像这篇博文写的http://blog.csdn.net/jadyer/article/details/24395015 昨天心血来潮突然想和SpringMVC整合,然后利用@ResponseBody注解的方式序列化输出json字符串 下面是研究成果 首先是applicationContext.xml中的相关配置 <?xml version="1.0" encoding="UTF-8"?> <beans xml

spring和springMVC整合注解版helloworld

整合的之前需要从官网上下载spring完整的jar包,我下载的是spring-framework-3.2.2.RELEASE.整合步骤如下: 1.在eclipse中新建一个web项目,将下载的spring的jar包拷入lib目录下,但是spring启动的时候依赖一个commons-logging-1.1.jar的jar包,你需要额外的下载. 2.编写web.xml,配置spring的分发器和spring配置文件的位置.具体内容如下: <servlet> <servlet-name>

Dubbo与Zookeeper、SpringMVC整合和使用(负载均衡、容错) 【转】

互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,Dubbo是一个分布式服务框架,在这种情况下诞生的.现在核心业务抽取出来,作为独立的服务,使前端应用能更快速和稳定的响应. 第一:介绍Dubbo背景 大规模服务化之前,应用可能只是通过RMI或Hessian等工具,简单的暴露和引用远程服务,通过配置服务的URL地址进行调用,通过F5等硬件进行负载均衡. (1) 当服务越来越多时,服务URL配置管理变得非常困难,F5硬件负载均衡器的单点压力也

Dubbo与Zookeeper、SpringMVC整合和使用(负载均衡、容错)(转)

互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,Dubbo是一个分布式服务框架,在这种情况下诞生的.现在核心业务抽取出来,作为独立的服务,使前端应用能更快速和稳定的响应. 第一:介绍Dubbo背景 大规模服务化之前,应用可能只是通过RMI或Hessian等工具,简单的暴露和引用远程服务,通过配置服务的URL地址进行调用,通过F5等硬件进行负载均衡. (1) 当服务越来越多时,服务URL配置管理变得非常困难,F5硬件负载均衡器的单点压力也

Dubbo与Zookeeper、SpringMVC整合和使用(负载均衡、容错)【转】

互联网的发展,网站应用的规模不断扩大,常规的垂直应用架构已无法应对,分布式服务架构以及流动计算架构势在必行,Dubbo是一个分布式服务框架,在这种情况下诞生的.现在核心业务抽取出来,作为独立的服务,使前端应用能更快速和稳定的响应. 第一:介绍Dubbo背景 大规模服务化之前,应用可能只是通过RMI或Hessian等工具,简单的暴露和引用远程服务,通过配置服务的URL地址进行调用,通过F5等硬件进行负载均衡. (1) 当服务越来越多时,服务URL配置管理变得非常困难,F5硬件负载均衡器的单点压力也

springmvc整合redis架构搭建实例

新换环境,又有新东西可以学习了,哈皮! 抽空学习之余看了一下redis,个人对Springmvc的爱是忠贞不渝,所以整理了一下Springmvc整合redis的环境搭建.分享学习. 第一步: 创建maven项目: 实例pom.xml内容如下 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns

Mybatis使用之SpringMVC整合

Mybatis使用之SpringMVC整合 一:简介 主要记录Mybatis如何与SpringMVC框架整合.Mybatis真正与Spring结合更能体现出其灵活.便捷的特点.数据源交由Spring管理.事务交由Spring管理.配置文件.映射文件交由Spring加载.初始化.映射接口交由Spring注入等等.大大简化了Mybatis代码.配置量.Mybatis只需关心与数据库打交道.处理数据与实体类之间的映射即可. 二:环境介绍 主要是Mybatis3.2.8与Spring4.1.0之间的整合