在web.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>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
-
需要注意的是,这只对post请求起作用,对于get请求是没有效果的。
-
Controller中方法上的
@RequestMapping
注解,如果不添加method
属性,则可以接收get或者post请求。
网友评论