In the Servlet API, you normally use a Servlet when you want to control, preprocess and/or postprocess specific requests. But when you want to filter/modify common requests and/or responses based on specific conditions, then a Filter is much more suitable.
32
votes
3answers
31k views
Modify request parameter with servlet filter
An existing web application is running on Tomcat 4.1. There is an XSS issue with a page, but I can't modify the source. I've decided to write a servlet filter to sanitize the parameter before it is ...
31
votes
3answers
40k views
How to use a servlet filter in Java to change an incoming servlet request url?
How can I use a servlet filter to change an incoming servlet request url from
http://nm-java.appspot.com/Check_License/Dir_My_App/Dir_ABC/My_Obj_123
to
...
23
votes
7answers
18k views
How can I get the HTTP status code out of a ServletResponse in a ServletFilter?
I'm trying to report on every HTTP status code returned from my webapp. However the status code does not appear to be accessible via the ServletResponse, or even if I cast it to a ...
23
votes
3answers
13k views
How to define Servlet filter order of execution using annotations
If we define Servlet filters in web.xml, then the order of execution of the filters will be the same as the order in which they are defined in the web.xml.
But, if we define the filters using ...
22
votes
3answers
14k views
Can I exclude some concrete urls from <url-pattern> inside <filter-mapping>?
I want some concrete filter to be applied for all urls except for one concrete (i.e. for /* except for /specialpath).
Is there a possibility to do that?
sample code:
<filter>
...
19
votes
2answers
9k views
servlet vs filter
What is the difference between a servlet and filter? What do you recommend to use authorization to pages?
15
votes
3answers
4k views
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 ...
15
votes
5answers
27k views
Handling 'session expired' in JSF web application, running in JBoss AS 5
This question is related to my other question "How to redirect to Login page when Session is expired in Java web application?". Below is what I'm trying to do:
I've a JSF web application running on ...
14
votes
3answers
6k views
Servlet.init() and Filter.init() call sequence
In which order are Servlet.init() and Filter.init() methods called in java web application? Which one is called first? Are all Servlet.init() methods called before than any Filter.doFilter method?
12
votes
2answers
6k views
What is a Jersey Filter?
I want to know basically what a Jersey filter is and how is it related to a servlet filter? Are they the same? What are the main patterns of using a Jersey Filter?
11
votes
1answer
8k views
How implement a login filter in JSF?
I would like to block the access of some page even if the user knows the url of some pages.
For example, /localhost:8080/user/home.xhtml (need to do the login first) if not logged then redirect to ...
10
votes
5answers
40k views
How to redirect to Login page when Session is expired in Java web application?
I'm running a web application in JBoss AS 5. I also have a servlet filter which intercepts all the requests to the server. Now, I want to redirect the users to the login page, if the session has ...
7
votes
7answers
17k views
difference between Filter and Listener in Servlet (J2EE)
There are Filters and Listeners functionality in Servlet. I want to know exact difference between Filter and Listener.
7
votes
2answers
12k views
How can I get the request URL from a Java Filter?
I am trying to write a filter that can retrieve the request URL, but I'm not sure how to do so.
Here is what I have so far:
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
...
7
votes
4answers
9k views
Accessing Spring beans from servlet filters and tags
I can access Spring beans in my Servlets using
WebApplicationContext springContext =
WebApplicationContextUtils.getWebApplicationContext(getServletContext());
in the Servlet's init ...
7
votes
3answers
5k views
In a web.xml url-pattern matcher is there a way to exclude URLs?
I wrote a filter that needs to be invoked every time a url on my site is accessed EXCEPT the CSS, JS, and IMAGE files. So in my definition I'd like to have something like:
<filter-mapping>
...
7
votes
5answers
910 views
Should a web framework be a Filter or a Servlet?
Having a web framework handle requests from single point of entry is a solved problem. However, should that single point of entry be a Filter or a Servlet? Why would a web application developer prefer ...
7
votes
1answer
1k views
Jersey: InjectableProvider not picked up - Spring
I am currently trying to create an InjectableProvider with Jersey, but I cannot get Jersey to pick it up.
I cannot find any real examples of its usage, or even how to get it picked up besides using ...
7
votes
2answers
3k views
Tomcat/Hibernate Problem “SEVERE: Error listenerStart”
I downloaded working example of hibernate (with maven) and installed it on my tomcat, it worked. Then I created a new web project in MyEclipse, added hibernate support and
moved all source files (no ...
6
votes
3answers
6k views
Spring HandlerInterceptor vs Servlet Filters
HandlerInterceptors in Spring can now be configured to be invoked only on certain URLs using <mvc:interceptors>.
Servlet Filters can achieve same functionality (logging, security etc). So which ...
6
votes
1answer
5k views
Giving multiple URL patterns to Servlet Filter
I am using Servlet Filter in my JSF application
I have three groups of Web pages in my application
so I want to check Authentication for this partical pages in my Servlet Filter
my Folders
/Admin/ ...
6
votes
1answer
5k views
Detect the URI encoding automatically in Tomcat
I have an instance of Apache Tomcat 6.x running, and I want it to interpret the character set of incoming URLs a little more intelligent than the default behavior. In particular, I want to achieve the ...
6
votes
2answers
10k views
Adding an HTTP Header to the request in a servlet filter
I'm integrating with an existing servlet that pulls some properties out of the HTTP header. Basically, I'm implementing an interface that doesn't have access to the actual request, it just has access ...
6
votes
1answer
790 views
Using a javax.servlet.Filter with Compojure
I'm trying to build a simple web site using Clojure / Compojure and want to feed apply a servlet filter to the request / response (i.e. a standard javax.servlet.Filter instance).
e.g. if the current ...
6
votes
4answers
2k views
How to close a HTTP connection from the HttpServlet
I'm running a servlet in Tomcat 6.0.26. The servlet accepts file upload from the client by HTTP POST. I'd like to stop the file uploading from the HttpServlet side. I tried the following methods with ...
6
votes
1answer
2k views
Static ThreadLocal variable in a WebApp - Are there any Security/Performance issues?
I am researching and experimenting with a ThreadLocal variable in my Java Web Application. I am using the ThreadLocal variable to store a username (collected from the session) before a request, and ...
6
votes
1answer
299 views
Server-wide functionality across several web applications
I need to perform pre- and post-processing of all incomming requests to a web server. The functionality is both url-level access restriction and language translation but also other special cases that ...
5
votes
2answers
6k views
Servlet 3.0 Async-supported does not work
Here is my web.xml
<filter>
<filter-name>pollingTest</filter-name>
<filter-class>
webapp.controller.core.servlet.PollingService
...
5
votes
2answers
11k views
Is it possible to forward or redirect from a servlet filter after the response has been comitted?
The logic is that the filter gets hit, the condition is not true, so it goes through the filter chain. After the response is committed, the filter gets hit, and the condition is now true (a request ...
5
votes
2answers
3k views
How do I get a SessionScoped CDI bean from inside a Filter?
This question is related to a previous one on writing a session timeout handler.
The answer in that thread involved accessing various session-scoped managed beans from the servlet. The ...
5
votes
2answers
2k views
Differences between ServletResponse and HttpServletResponseWrapper?
I am new to servlet and reading some text about filters and wrappers. I can understand filters but got confused about wrappers. In the book, the author gives an example:
In case no wrapper:
public ...
5
votes
4answers
4k views
Which compression (is GZIP the most popular) servlet filter would you suggest?
I am looking for a GZIP servlet filter to be used in a high volume web-app. I doesn't want to use the container specific options.
Requirement
Ability to compress response payload (XML)
Faster
...
5
votes
3answers
2k views
Java - How does the Tuckee URL Rewrite filter change the url of the request?
I want to write my own version of url rewriting for my app, but I don't know how to change the url of the incoming request in the filter.
I tried just forwarding to the rewritten url, but that makes ...
5
votes
2answers
3k views
Http Servlet request lose params from POST body after read it once
I'm accessing to http request parameters in a Java Servlet filter, nothing new here. But I'm surpised that the parameters have been consumed!!, so it will not be available anymore in the filter chain.
...
5
votes
3answers
2k views
Difference between servlet/servlet-mapping and filter/filter-mapping?
As part of exploring/learning Struts2, JSP and Servlets, I see from here and there that servlets and servlets-mapping can be used in web.xml. However, Struts2 mentions filters and filter-mapping too ...
5
votes
2answers
538 views
How to specify order of filter mappings on GlassFish?
I read that the order in which filters are processed can be determined by the order in which they are declared in web.xml
But how to do this without web.xml, using for example the @WebServlet ...
5
votes
2answers
1k views
java.lang.IllegalArgumentException: Filter mapping must specify either a <url-pattern> or a <servlet-name>
I've created very simple REST app with next web.xml:
<context-param>
<param-name>resteasy.scan</param-name>
<param-value>true</param-value>
</context-param>
...
5
votes
1answer
2k views
How can I add a servlet filter programmatically?
Although I've seen many similar questions, I didn't find a clear answer.
Using Servlet Spec 2.5, is it possible to add servlet filters and mappings programmatically?
The preferred location would be in ...
5
votes
4answers
845 views
Is ThreadLocal preferable to HttpServletRequest.setAttribute(“key”, “value”)?
The servlet spec (see my previous question) guarantees that the same thread will execute all Filters and the associated Servlet. Given this, I do not see any use for passing data using ...
5
votes
2answers
3k views
Programmatically control login with Servlet 3.0
I've tested the default security containers in Glassfish 3.0.1 and come to the conclusion that I won't spend any more time on that. Instead I want to control the verification myself. But I need some ...
5
votes
1answer
1k views
JSF: How control access and rights in JSF?
I would like to control the access after the user log in my system.
For example:
administrator : can add, delete and give rights to employee
employee : fill forms only
...
So after knowing which ...
5
votes
2answers
8k views
Setting Authentication Header in Servlet via Filter
Preface
This is my first attempt at a Filter, be gentle.
Project Description
I am trying to finalize a build for a SSO for several of our applications and I seem to be hitting a wall. The webapp I ...
5
votes
1answer
7k views
How do a web filter in JSF 2?
I create this filter :
public class LoginFilter implements Filter {
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ...
5
votes
3answers
634 views
Java Filters Performance Question
I have two questions. The first is do Filters add a lot of overhead to request. We have a filter and it is set to run on the URL pattern /*. This means it also runs on all the image request. I ...
5
votes
2answers
864 views
Servlet filters for abuse prevention? (DoS, spam, etc)
I'm looking for a servlet filter library that helps me secure our web service against unauthorized usage and DDoS.
We have "authorized clients" for our web service, so ideally the filter would help ...
5
votes
1answer
708 views
Adding Cookie after FilterChain.doFilter() - HttpServletResponseWrapper to ignore flushing?
I'd like to add a cookie to an HttpServletResponse after its content (usually HTML) has been rendered.
As mentioned here (http://osdir.com/ml/java.jasig.uportal/2005-10/msg00276.html),
and here ...
4
votes
2answers
5k views
How to skip a filter in the filter chain in java
I have 2 filters in my application. Based on some condition, I want to choose whether to execute the second filter or not. Is there a way to do this?
I did some googling with no success. I want the ...
4
votes
3answers
2k views
Java EE Filters not able to get cookies?
Why aren't cookies able to be referenced from a servlet filter? It just seems beyond me that Java EE wouldn't allow you to sanitize cookie values:
public void doFilter(ServletRequest request, ...
4
votes
3answers
5k views
Is doFilter() executed before or after the Servlet's work is done?
The javax.servlet.Filter object can be used both for authentication (where the Filter needs to catch the request before any servlet work needs to be done) and for XSLT translation (where the servlet ...
4
votes
3answers
2k views
Where can I find a Java Servlet Filter that applies regex to the output? [closed]
I'm hoping someone has already written this:
A servlet filter that can be configured with regular expression search/replace patterns and applies them to the HTML output.
Does such a thing exist?
