spingmvc如何解决乱码问题,有哪几种方式?
时间: 2024-02-24 10:57:22 浏览: 62
Spring MVC 可以通过以下几种方式解决乱码问题:
1. 在 web.xml 中配置 CharacterEncodingFilter 过滤器,设置编码为 UTF-8。
```xml
<filter>
<filter-name>encodingFilter</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>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
```
2. 在 Spring MVC 的配置文件中配置字符编码过滤器。
```xml
<mvc:annotation-driven>
<mvc:message-converters>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/plain;charset=UTF-8</value>
<value>text/html;charset=UTF-8</value>
<value>application/json;charset=UTF-8</value>
</list>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>
```
3. 在 Controller 中使用 @RequestMapping 注解的 produces 属性,指定返回的数据类型和编码。
```java
@RequestMapping(value = "/test", produces = "text/html;charset=UTF-8")
@ResponseBody
public String test() {
return "测试";
}
```
阅读全文