码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC中手动转json

时间:2021-06-02 18:44:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:throw   public   response   util   content   mvc   servlet   对象   oid   

单独json化一个对象,压缩为null的字段

   @RequestMapping("/toDoListApproval")
    public void toDoListApproval(String id, HttpServletResponse response) throws Exception {
        Object responseResult = xxxService.getById(id);
        response.setHeader("Content-Type","application/json;charset=UTF-8");
        ServletOutputStream out = response.getOutputStream();
        IOUtils.write(JSON.toJSONString(responseResult).getBytes("UTF-8"),out);
        out.flush();
    }

SpringMVC中手动转json

标签:throw   public   response   util   content   mvc   servlet   对象   oid   

原文地址:https://www.cnblogs.com/TaranZhu/p/14831142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!