测试用例

    @RequestMapping(value = "/test")
    @ResponseBody //不加这个注解 会返回404错误
    public JSONObject test(HttpServletResponse httpServletResponse) throws IOException {
//        httpServletResponse.sendError(502);//可以指定返回的状态码,测试的时候可以作为特殊情况的测试用例
        JSONObject jsonObject = new JSONObject();
        jsonObject.put("code", 0);
        jsonObject.put("msg", "success");
        return jsonObject;
    }

你可能感兴趣的:(测试用例)