所以我创建了一个控制器

@Controller
@RequestMapping("/hello")
public class HelloController {

    @RequestMapping("/all")
    @ResponseBody
    public String display()
    {
        return "Мегафон Игры";  //russian characters
    }
}


现在,当我点击网址http://localhost:8080/SpringMVC/hello/all
我在响应中得到??????? ????

我已经在tomcat的server.xml文件中配置了URIEncoding,就像这样

<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8"/>`
<Connector port="8009" protocol="AJP/1.3" redirectPort="8443" URIEncoding="UTF-8"/>


我已经在Chrome浏览器,邮递员和Eclipse控制台上测试了我的回复。

我什至尝试在web.xml文件中添加encoding-filter

<filter>
    <filter-name>encoding-filter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
       <param-name>encoding</param-name>
       <param-value>UTF-8</param-value>
    </init-param>
    <init-param>
       <param-name>forceEncoding</param-name>
       <param-value>FALSE</param-value>
    </init-param>
 </filter>
 <filter-mapping>
    <filter-name>encoding-filter</filter-name>
    <url-pattern>/*</url-pattern>
 </filter-mapping>


请帮我,我想念什么?

最佳答案

可能是因为您需要定义响应主体的编码。
为此,您可以使用@RequestMapping注释,例如

@RequestMapping(
     value = "/all",
     method = RequestMethod.GET,
     produces = MediaType.APPLICATION_JSON_UTF8_VALUE
)

关于java - 俄语字符显示为???在Spring-MVC中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55049293/

10-17 01:16