SpringMVC返回json字符串(非注解方式)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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字符串(非注解方式)的主要内容,如果未能解决你的问题,请参考以下文章
前台jquery+ajax+json传值,后台处理完后返回json字符串,如何取里面的属性值?(不用springmvc注解)