Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created October 29, 2011 14:42
Show Gist options
  • Save eugenp/1324520 to your computer and use it in GitHub Desktop.
Save eugenp/1324520 to your computer and use it in GitHub Desktop.
Securing a RESTful Web Service with Spring Security 3.1, part 3 - the 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>
@eugenp
Copy link
Author

eugenp commented Nov 6, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment