码迷,mamicode.com
首页 > Web开发 > 详细

json转化对特殊字段的处理

时间:2016-06-22 15:41:36      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

        //获取部门id
        String departmentId = (String)this.getRequest().getParameter("departmentId");
        //根据部门id查询用户list
        List<Admin> adminList = adminService.findAllListBydepartment(departmentId);
        try {
            JsonConfig jsonConfig = new JsonConfig();  //建立配置文件
            jsonConfig.setIgnoreDefaultExcludes(false);  //设置默认忽略
            jsonConfig.setExcludes(new String[]{"roles"}); //此处是亮点,只要将所需忽略字段加到数组中即可
            
            HttpServletResponse response = this.getResponse();
            response.setContentType("text/plain;charset=UTF-8");
            JSONArray array = JSONArray.fromObject(adminList, jsonConfig);
            response.getWriter().print(array);
        } catch (Exception e) {
            e.printStackTrace();
        }

 

json转化对特殊字段的处理

标签:

原文地址:http://www.cnblogs.com/kisstear/p/5606922.html

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