DelegatingFilterProxy 的filter-name对应的bean默认只能在applicationContext.xml中建立,如果想把filter-name这个bean配置到mvc的配置文件中,可以在web.xml中这么配置。
<filter> <filter-name>springSecurityFilterChain</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> <init-param> <param-name>contextAttribute</param-name> <param-value>org.springframework.web.servlet.FrameworkServlet.CONTEXT.spring-mvc</param-value> </init-param> </filter>
spring-mvc是DispatcherServlet在web.xml中配置的servlet-name。
了解 工作生活心情记忆 的更多信息
Subscribe to get the latest posts sent to your email.