package com.zy.asrs.wcs.utils;
|
|
import com.alibaba.fastjson.JSON;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.io.IOException;
|
import java.io.PrintWriter;
|
|
/**
|
* Created by vincent on 1/29/2024
|
*/
|
public class HttpUtils {
|
|
public static void responseError(HttpServletResponse response, Integer code, String message, String error) {
|
response.setContentType("application/json;charset=UTF-8");
|
try {
|
PrintWriter out = response.getWriter();
|
out.write(JSON.toJSONString(new ApiResult<>(code, message, null, error)));
|
out.flush();
|
} catch (IOException e) {
|
e.printStackTrace();
|
}
|
}
|
|
}
|