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数据给前端的主要内容,如果未能解决你的问题,请参考以下文章

JAVA后台如何返回数据给前台?前台怎么取到数据呢?

springboot后端的返回的data属性前端无法接收

springBoot---过滤器,监听器,拦截器

springboot的前端返回

springboot跨域不拦截json拦截文件

怎么给后端返回的json中添加数据