Springboot之返回json数据格式的两种方式-yellowcong

时间:2024-10-30 18:32:34

SpringBoot返回字符串的方式也是有两种,一种是通过@ResponseBody@RequestMapping(value = "/request/data", method = , produces = "application/json;charset=UTF-8") 中的produces = "application/json;charset=UTF-8" 来设定返回的数据类型是json,utf-8编码,第二种方式,是通过response的方式,直接写到客户端对象。在Springboot中,推荐使用注解的方式。

代码地址

https:///yellowcong/springboot-demo/tree/master/springboot-json

目录结构

JSONController2 这个类,是这个案例的代码,JSONController 是上一篇的例子。
这里写图片描述

1、通过@ResponseBody

通过@ResponseBody 方式,需要在@RequestMapping 中,添加produces = "application/json;charset=UTF-8",设定返回值的类型。

/**
 * 创建日期:2018年4月6日<br/>
 * 代码创建:黄聪<br/>
 * 功能描述:通过request的方式来获取到json数据<br/>
 * @param jsonobject 这个是阿里的 fastjson对象
 * @return
 */
@ResponseBody
@RequestMapping(value = "/body/data", method = , produces = "application/json;charset=UTF-8")
public String writeByBody(@RequestBody JSONObject jsonParam) {
    // 直接将json信息打印出来
    (());

    // 将获取的json数据封装一层,然后在给返回
    JSONObject result = new JSONObject();
    ("msg", "ok");
    ("method", "@ResponseBody");
    ("data", jsonParam);

    return ();
}

2、通过HttpServletResponse来返回

通过HttpServletResponse 获取到输出流后,写出数据到客户端,也就是网页了。

/**
 * 创建日期:2018年4月6日<br/>
 * 代码创建:黄聪<br/>
 * 功能描述:通过HttpServletResponse 写json到客户端<br/>
 * @param request
 * @return
 */
@RequestMapping(value = "/resp/data", method = )
public void writeByResp(@RequestBody JSONObject jsonParam,HttpServletResponse resp) {

    // 将获取的json数据封装一层,然后在给返回
    JSONObject result = new JSONObject();
    ("msg", "ok");
    ("method", "HttpServletResponse");
    ("data", jsonParam);

    //写json数据到客户端
    this.writeJson(resp, result);
}

/**
 * 创建日期:2018年4月6日<br/>
 * 代码创建:黄聪<br/>
 * 功能描述:写数据到浏览器上<br/>
 * @param resp
 * @param json
 */
public void writeJson(HttpServletResponse resp ,JSONObject json ){
    PrintWriter out = null;
    try {
        //设定类容为json的格式
        ("application/json;charset=UTF-8");
        out = ();
        //写到客户端
        (());
        ();
    } catch (IOException e) {
        ();
    }finally{
        if(out != null){
            ();
        }
    }
}

3、测试

可以看到,我先访问的是HttpServletResponse的这个类,然后才是通过Springmvc提供的方法反回,可以看到,编码都是utf-8,也是json的数据类型。
这里写图片描述

参考文章

/yoyotl/p/