Spring添加了额外的过滤器

时间:2013-07-04 02:04:51

标签: spring utf-8 web.xml

我在将utf-8添加到现有项目时遇到了一些问题。

我在这篇文章utf-8 spring

中看到了解决方案

但是在我的web.xml中我有spring安全过滤器,那么如何在web.xml中包含另一个过滤器?

的web.xml

<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>
        org.springframework.web.filter.DelegatingFilterProxy
    </filter-class>
</filter>

<filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

我需要包含这些新行(允许utf-8编码)

<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>/*</url-pattern>  
</filter-mapping> 

1 个答案:

答案 0 :(得分:1)

web.xml中有多个过滤器没有问题。我只是建议首先放置编码过滤器。

multiple filters in the documentation of Oracle有一个例子。