springMVC返回json数据乱码问

Posted yysbolg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springMVC返回json数据乱码问相关的知识,希望对你有一定的参考价值。

在springMVC controller中返回json数据出现乱码问题,因为没有进行编码,只需要简单的注解就可以了

在@RequestMapping()中加入produces="text/html;charset=UTF-8"属性即可,如下:

    @RequestMapping(value="/respost",method=RequestMethod.GET,produces="text/html;charset=UTF-8")
    @ResponseBody
    public String postList(@RequestParam("topicId") String topicId)
        List<Post> posts=new ArrayList<Post>();
        System.out.println("topicId-----"+topicId);
        posts=postService.findPostList(topicId);
        JSONArray postJson=JSONArray.fromObject(posts);
        return postJson.toString();
        

 

以上是关于springMVC返回json数据乱码问的主要内容,如果未能解决你的问题,请参考以下文章

使用ajax请求SpringMVC返回Json出现乱码解决方法

DEBUG关于SpringMVC的返回响应体文本json两种数据的乱码问题

springmvc,通过ajax方式提交页面数据,后台返回json数据中文信息乱码

springMVC 返回json乱码问题

解决springmvc返回json中文乱码

SpringMVC 返回 json 字符串中文乱码