Skip to content
Advertisement

How to add filters to servlet without modifying web.xml

I’d like the ability to modify/configure filters in a different way than web.xml. Here is a static configuration of 2 filters. I’d like the ability to have one filter statically configured and allow that filter to load additional filters. I just wanted to know if anyone knows of lib that already has this.

Using Servlet API 2.5

JavaScript

I’ve seen this done in Guice with GuiceFilter where the Filters are configured at runtime.

Advertisement

Answer

Just do the same job as the container already does. I.e. reinvent the wheel of the chain of responsibility design pattern as is under the covers been used by servlet filters.

JavaScript

with those little helper classes (which can if necessary be made private static nested classes of the above GodFilter):

JavaScript

and

JavaScript

You could if necessary also feed a XML config file with all possible filters so that you end up with easier configuration. You could use reflection to create filters in init() of your GodFilter.

Oh nevermind, that’s what the web.xml and the container already is doing…

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement