在使用SSM后台项目中,我想要使用一个@ResponseBody返回中文信息,但是我发现了乱码情况。
package com.xjj.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping("/interface")
public class TestController {
@RequestMapping("/test")
@ResponseBody
public String test(){
return "你好";
}
}
解决方法:
1、修改@RequestMapping中的属性
package com.xjj.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping("/interface")
public class TestController {
@RequestMapping(value = "/test", produces = {"text/html;charset=utf-8"})
@ResponseBody
public String test(){
return "你好";
}
}
这是目前发现有用的方法,以后收集到其他的会继续补充!