springboot拦截器返回json数据给前端
Posted 阿豪吖
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot拦截器返回json数据给前端相关的知识,希望对你有一定的参考价值。
if(StringUtils.isEmpty(token)){
response.setCharacterEncoding("UTF-8");
response.setContentType("application/json; charset=utf-8");
PrintWriter out = null;
JSONObject res = new JSONObject();
res.put("success", false);
res.put("message", "请携带token");
out = response.getWriter();
out.append(res.toString());
return false;
}
以上是关于springboot拦截器返回json数据给前端的主要内容,如果未能解决你的问题,请参考以下文章