通过Response返回JSON数据

我代码如下:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15

if (companyClientManager == null) {

    // 返回错误消息
    response.setCharacterEncoding("utf-8");
    response.setContentType("application/json; charset=utf-8");
    response.getOutputStream()
            .write(JSON.toJSONBytes(ResponseVo.createErrorByCodeMessage(
                    INIT_COMPANY_INFO_WRONG.getCode(),
                    INIT_COMPANY_INFO_WRONG.getMessage())));

    return false;
}


参考资料

  1. Response返回JSON数据