首页 > 代码库 > SpringMVC返回json字符串(非注解方式)
SpringMVC返回json字符串(非注解方式)
这里采用的是非注解形式,相当于注解中的@responseBody
/** * 根据字符串输出JSON,返回null * * @param jsonString * @return */ public String ajaxJson(HttpServletResponse response,String jsonString) { return ajax(response,jsonString, "text/html"); }
/** * 返回json字符串(非注解形式) * AJAX输出,返回null * * @param content * @param type * @return */ public String ajax(HttpServletResponse response, String content, String type) { try { response.setContentType(type + ";charset=UTF-8"); response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Control", "no-cache"); response.setDateHeader("Expires", 0); response.getWriter().write(content); response.getWriter().flush(); } catch (IOException e) { e.printStackTrace(); logger.error("IOException:", e); } return null; }
本文出自 “JianBo” 博客,转载请与作者联系!
SpringMVC返回json字符串(非注解方式)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。