【架构】Spring输出信息格式的统一管理工具类

SpringMVC与返回前端json信息的统一工具类。


一、SpringUtil

package com.yhb.util.json;

import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletResponse;

import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.context.ContextLoader;
import org.springframework.web.context.support.WebApplicationContextUtils;

import com.yhb.base.BaseConstants;
import com.yhb.util.DateJsonValueProcessor;

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import net.sf.json.JsonConfig;
import net.sf.json.util.CycleDetectionStrategy;

/**
 * 
 * @ClassName: SpringUtils.java
 * @Description: 对Spring输出信息格式的统一管理工具类
 * @date: 2017年5月3日 上午11:18:04
 *
 *        Modification History: Date Author Version Description
 *        ---------------------------------------------------------* 2017年5月3日
 *        wangxf v1.0.0 修改原因
 */
public class SpringUtils {

    // header 常量定义
    private static final String ENCODING_PREFIX = "encoding";
    private static final String NOCACHE_PREFIX = "no-cache";
    private static final boolean NOCACHE_DEFAULT = true;
    private static JsonConfig config = new JsonConfig();
    private static Logger logger = LoggerFactory.getLogger(SpringUtils.class);

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 获得bean
     *
     * @param: Class<T>
     *             clazz
     * @param: String
     *             name
     * @return:返回结果描述
     * @throws:异常描述
     * @date: 2017年5月3日 上午11:19:11
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    /**
     * 获得bean
     * 
     * @param name
     * @return
     */
    @SuppressWarnings("unchecked")
    public static <T> T getBean(Class<T> clazz, String name) {
        return (T) WebApplicationContextUtils.getWebApplicationContext(ContextLoader.getCurrentWebApplicationContext().getServletContext()).getBean(name);
    }


    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 绕过jsp直接输出文本的函数—直接输出内容的简便函数
     *
     * @param: HttpServletResponse
     * @param: final
     *             String contentType
     * @param: final
     *             String content
     * @param: final
     *             String... headers @return: @throws:
     * @date: 2017年5月3日 上午11:20:15
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void render(HttpServletResponse response, final String contentType, final String content,
            final String... headers) {
        try {
            // 分析headers参数
            String encoding = BaseConstants.UTF8;
            boolean noCache = NOCACHE_DEFAULT;
            for (String header : headers) {
                String headerName = StringUtils.substringBefore(header, ":");
                String headerValue = StringUtils.substringAfter(header, ":");

                if (StringUtils.equalsIgnoreCase(headerName, ENCODING_PREFIX)) {
                    encoding = headerValue;
                } else if (StringUtils.equalsIgnoreCase(headerName, NOCACHE_PREFIX)) {
                    noCache = Boolean.parseBoolean(headerValue);
                } else
                    throw new IllegalArgumentException(headerName + "不是一个合法的header类型");
            }
            // 设置headers参数
            String fullContentType = contentType + ";charset=" + encoding;
            response.setContentType(fullContentType);
            if (noCache) {
                response.setHeader("Pragma", "No-cache");
                response.setHeader("Cache-Control", "no-cache");
                response.setDateHeader("Expires", 0);
            }

            response.getWriter().write(content);
            response.getWriter().flush();

        } catch (IOException e) {
            logger.error(e.getMessage(), e);
        }
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 绕过jsp直接输出文本的函数—直接输出文本
     *
     * @param: HttpServletResponse
     * @param: final
     *             String text
     * @param: final
     *             String... headers @return: @throws:
     * @date: 2017年5月3日 上午11:21:05
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderText(HttpServletResponse response, final String text, final String... headers) {
        render(response, "text/plain", text, headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 绕过jsp直接输出文本的函数—直接输出HTML
     *
     * @param: HttpServletResponse
     * @param: final
     *             String html
     * @param: final
     *             String... headers @return: @throws:
     * @date: 2017年5月3日 上午11:21:38
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderHtml(HttpServletResponse response, final String html, final String... headers) {
        render(response, "text/html", html, headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 绕过jsp直接输出文本的函数—直接输出XML
     *
     * @param: HttpServletResponse
     * @param: final
     *             String xml
     * @param: final
     *             String... headers @return: @throws:
     * @date: 2017年5月3日 上午11:22:04
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderXml(HttpServletResponse response, final String xml, final String... headers) {
        render(response, "text/xml", xml, headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 绕过jsp直接输出文本的函数—直接输出JSON格式
     *
     * @param: HttpServletResponse
     * @param: final
     *             String
     * @param: final
     *             String... headers @return: @throws:
     * @date: 2017年5月3日 上午11:22:34
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderJson(HttpServletResponse response, final String string, final String... headers) {
        render(response, "application/json", string, headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 绕过jsp直接输出文本的函数—直接输出JSON 将Map对象,将被转化为json字符串
     *
     * @param: HttpServletResponse
     * @param: final
     *             Map
     * @param: final
     *             String @return: @throws:
     * @date: 2017年5月3日 上午11:22:57
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    @SuppressWarnings("unchecked")
    public static void renderJson(HttpServletResponse response, final Map map, final String... headers) {
        config.registerJsonValueProcessor(Date.class, new DateJsonValueProcessor("yyyy-MM-dd HH:mm:ss"));
        String jsonString = JSONObject.fromObject(map, config).toString();
        renderJson(response, jsonString, headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 直接输出JSON. Java对象,将被转化为json字符串
     *
     * @param: HttpServletResponse
     * @param: final
     *             Object
     * @param: final
     *             String @return: @throws:
     * @date: 2017年5月3日 上午11:24:49
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderJson(HttpServletResponse response, final Object object, final String... headers) {
        String jsonString = fromObject(object);
        renderJson(response, jsonString, headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 对象转换json格式字符串
     *
     * @param: Object
     *          @return: String @throws:
     * @date: 2017年5月3日 上午11:25:54
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static String fromObject(Object obj) {
        return JSONObject.fromObject(obj).toString();
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 将JSON串转换为Map
     *
     * @param: String
     *             jsonStr @return: Map @throws:
     * @date: 2017年5月3日 上午11:27:21
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static Map<String, Object> parseJSON2Map(String jsonStr) {
        Map<String, Object> map = new HashMap<String, Object>();
        // 最外层解析
        JSONObject json = JSONObject.fromObject(jsonStr);
        for (Object k : json.keySet()) {
            Object v = json.get(k);
            // 如果内层还是数组的话,继续解析
            if (v instanceof JSONArray) {
                List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
                Iterator<JSONObject> it = ((JSONArray) v).iterator();
                while (it.hasNext()) {
                    JSONObject json2 = it.next();
                    list.add(parseJSON2Map(json2.toString()));
                }
                map.put(k.toString(), list);
            } else {
                map.put(k.toString(), v);
            }
        }
        return map;
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: json字符串转换对象
     *
     * @param: String
     *             jsonStr
     * @param: Class
     *             clazz @return: Object @throws:
     * @date: 2017年5月3日 上午11:28:14
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static Object toObject(String jsonStr, Class clazz) {

        List objList = JSONArray.toList(JSONArray.fromObject(jsonStr), clazz);
        if (objList.size() > 0) {
            return objList.get(0);
        } else {
            return null;
        }

    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: list 输出json
     *
     * @param: HttpServletResponse
     * @param: final
     *             List
     * @param: final
     *             String... headers @return: @throws:
     * @date: 2017年5月3日 上午11:29:15
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderJson(HttpServletResponse response, final List object, final String... headers) {
        JSONArray json = JSONArray.fromObject(object);
        renderJson(response, json.toString(), headers);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: list 输出json
     *
     * @param: List<T>
     *             list @return: String @throws:
     * @date: 2017年5月3日 上午11:30:47
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static <T> String formatListJson(List<T> list) {
        JsonConfig config = new JsonConfig();
        config.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);
        return JSONArray.fromObject(list, config).toString();
        // return JSONObject.fromObject(list,config).toString();
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 将查询状态转换为JSON,并直接以JSON格式输出
     *
     * @param: HttpServletResponse
     * @param: String
     *             code
     * @param: String
     *             message
     * @return:返回结果描述
     * @throws:异常描述
     * @date: 2017年5月3日 上午11:32:06
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderJsonResult(HttpServletResponse response, int code, String message) {
        JsonResult rest = new JsonResult(code, message);

        SpringUtils.renderJson(response, rest);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 将查询状态转换为JSON,并直接以JSON格式输出
     *
     * @param: HttpServletResponse
     * @param: String
     *             code
     * @param: String
     *             message
     * @return:返回结果描述
     * @throws:异常描述
     * @date: 2017年5月3日 上午11:32:06
     *
     */
    public static void renderJsonResultObJ(HttpServletResponse response, int code, Object message) {
        JsonResult rest = new JsonResult(code, message);

        SpringUtils.renderJson(response, rest);
    }

    /**
     * 
     * @Function: SpringUtils.java
     * @Description: 将查询状态转换为JSON,并直接以JSON格式输出
     *
     * @param: HttpServletResponse
     * @param: String
     *             code
     * @param: String
     *             message
     * @return:返回结果描述
     * @throws:异常描述
     *
     * @date: 2017年5月3日 上午11:32:06
     *
     *        Modification History: Date Author Version Description
     *        ---------------------------------------------------------*
     *        2017年5月3日 wangxf v1.0.0 修改原因
     */
    public static void renderJsonResultToken(HttpServletResponse response, int code, Object message, String msg,
            String token) {
        JsonResult rest = new JsonResult(code, message, msg, token);

        SpringUtils.renderJson(response, rest);
    }

    /**
     * 
     * @Description:获取参数错误信息系统内部
     *
     * @param:描述1描述
     * @return:返回结果描述
     * @date: 2017年5月5日 上午10:25:46
     */
    public static Object Message(int code, String message) {
        JsonResult rest = new JsonResult(code, message);
        return rest;
    }
}

二、使用实例

/**
     * 
     * @Description: 用户退出系统
     *
     * @param:token
     * @return:Json
     */
    @RequestMapping("exit")
    public void exitSys(HttpServletRequest request, HttpServletResponse response,
            @RequestBody Map<String, String> param) {
        if (null == param  || param.size()  < 1) {
            SpringUtils.renderJsonResult(response, ResultEnum.ERROR.getCode(), ResultEnum.ERROR.getCodeDesc());
            return;
        }

        SpringUtils.renderJsonResult(response, ResultEnum.SUCCESS.getCode(), "退出成功");

    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容