Quantcast
Channel: What's the point of Spring MVC's DelegatingFilterProxy? - Stack Overflow
Browsing latest articles
Browse All 8 View Live

Answer by OutOfMind for What's the point of Spring MVC's DelegatingFilterProxy?

Its been a long time but I had the same question and I found this: https://www.javacodegeeks.com/2013/11/spring-security-behind-the-scenes.html I tried to run my spring security project by removing the...

View Article



Answer by Janet for What's the point of Spring MVC's DelegatingFilterProxy?

I have been perplexed by "springSecurityFilterChain" in web.xml and found this answer in springframework security document: The <http> element encapsulates the security configuration for the web...

View Article

Answer by jbbarquero for What's the point of Spring MVC's DelegatingFilterProxy?

There's some kind of magic here, but at the end, everything is a deterministic program. The DelegatingFilterProxy is a Filter as it was explained above, whose goal is "delegating to a Spring-managed...

View Article

Answer by Tahir Akhtar for What's the point of Spring MVC's...

What are Servlet Filters? Servlet filters are, in general, a Java WebApp concept. You can have servlet filters in any webapp, whether or not you use Spring framework in your application. These filters...

View Article

Answer by Bozho for What's the point of Spring MVC's DelegatingFilterProxy?

The thing is, servlet filters are managed by the servlet container, and not by spring. And you may need to inject some spring components into your filters. So, if you need something like: public class...

View Article


Answer by Ryan Stewart for What's the point of Spring MVC's...

Do you know what a Servlet Filter is and how it works? It's a very useful piece of the Servlet Spec, allowing us to apply AOP-like concepts to servicing of HTTP requests. Many frameworks use Filter...

View Article

Answer by Ritesh for What's the point of Spring MVC's DelegatingFilterProxy?

You are right about 'glue' stuff. As written in JavaDocs of FilterChainProxy: The FilterChainProxy is linked into the servlet container filter chain by adding a standard Spring DelegatingFilterProxy...

View Article

What's the point of Spring MVC's DelegatingFilterProxy?

I see this in my Spring MVC app's web.xml: <filter> <filter-name>springSecurityFilterChain</filter-name>...

View Article

Browsing latest articles
Browse All 8 View Live




Latest Images