首页>代码>Spring MVC+swagger作为restful api的doc在线文档生成>/apidoc/src/main/java/com/spg/apidoc/controller/BaseController.java
/**
 * 
 */
package com.spg.apidoc.controller;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.spg.apidoc.vo.BaseResultVo;

/**
 * 项目名称:forum
 * 
 * @description: 基础controller
 * 
 * @author Wind-spg
 * 
 * @create_time:2014年10月8日 下午4:08:06
 * 
 * @version V1.0.0
 * 
 */
public class BaseController
{
    private static final Log LOGGER = LogFactory.getLog(BaseController.class);

    SerializerFeature[] feature =
    { SerializerFeature.DisableCircularReferenceDetect, SerializerFeature.WriteNullListAsEmpty,
            SerializerFeature.WriteNullStringAsEmpty, SerializerFeature.WriteNullBooleanAsFalse,
            SerializerFeature.WriteMapNullValue };

    /**
     * @description: 构造成功返回结果
     * @author: Wind-spg
     * @param resultData
     *            : 需要返回的数据,可选
     * @return
     */
    protected String buildSuccessResultInfo(Object resultData)
    {
        LOGGER.debug(String.format("enter function, %s", resultData));
        BaseResultVo resultVo = new BaseResultVo();
        resultVo.setResultData(resultData);
        resultVo.setResultMessage("success");
        return JSON.toJSONString(resultVo, feature);
    }

    /**
     * @description: 构造失败返回结果
     * @author: Wind-spg
     * @param resultCode
     *            :任意非0数字,代表失败
     * @param failedMsg
     *            :失败信息
     * @return
     */
    protected String buildFailedResultInfo(int resultCode, String failedMsg)
    {
        BaseResultVo resultVo = new BaseResultVo(resultCode, failedMsg);
        return JSON.toJSONString(resultVo, feature);
    }

}
最近下载更多
开心灬愉悦  LV9 2021年5月2日
heqian  LV17 2020年12月10日
912299793  LV21 2020年8月29日
青春的尾巴  LV3 2020年8月2日
153393366@  LV9 2019年7月16日
Damionchow  LV4 2019年6月4日
1247879478  LV8 2019年1月17日
hanjinyu  LV11 2018年10月15日
yeling123  LV5 2018年7月9日
longyang1  LV10 2018年7月1日
最近浏览更多
3334004690  LV10 6月24日
akittyboy  LV9 2月25日
RrrReNax  LV3 2023年7月18日
lipanlong  LV10 2023年7月6日
IT达人  LV22 2023年2月16日
503382513  LV10 2022年12月5日
1358849392  LV21 2022年11月11日
neuwxr2015  LV8 2022年9月20日
crosa_Don  LV18 2022年6月14日
xueying049  LV5 2022年5月9日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友