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.

learn more… | top users | synonyms (3)

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 ...
4
votes
1answer
2k views

Is there any easy way to preprocess and redirect GET requests?

I'm looking for a best practise answer. I want to do some preprocessing for GET requests. So e.g. if the user is not allowed to see the page, redirect him to another page. But I don't want to use ...
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 ...
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 ...
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 ...
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?
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 ...
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 ...
4
votes
1answer
6k views

Filter mapping for everthing to Struts2 besides one servlet?

I have a Struts2 (2.1.8.1) web application. My web.xml looks like, <filter> <filter-name>struts2</filter-name> ...
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 ...
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 ...
3
votes
2answers
2k views

How to log response content from a java web server

I've created a filter to in my java webserver (appengine actually) that logs the parameters of an incoming request. I'd also like to log the resulting response that my webserver writes. Although I ...
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 ...
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 ...
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 ...
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> ...
3
votes
1answer
3k views

Servlet filter for browser caching?

Does anyone know how to go about coding a servlet filter that will set cache headers on a response for a given file/content type? I've got an app that serves up a lot of images, and I'd like to cut ...
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 ...
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?
4
votes
1answer
2k views

What is the correct way to implement login with redirect using JSF 2.0?

Part of my site should be accessible only to authorized users. Let's assume user would enter page a.html which belongs to the authorized-only part. If I was to use servlets/JSP I could write a ...
3
votes
3answers
12k views

Filter mapping url-pattern that excludes subdirectories

Is there any way to make a filtermapping not include subdirectories? For example. I have .xhtml files in my context root, and I also have a subfolder named "test" with files with the same extension. ...
2
votes
1answer
3k views

Session validation filter which logs off the user when session is expired

I have a session validation Filter which logs off the user when session is expired. Here is a piece of code but this is not working. Not working means this is not redirecting to the login page even ...
2
votes
1answer
2k views

Why Doesn't Tuckey UrlRewrite Filter call chain.doFilter after a rule is matched?

Using Spring Framework here... I created a filter to change the response body of css files and if I call a url directly it runs. However, if a urlrewrite rule is matched the filter is skipped. ...
2
votes
2answers
9k views

Java Filter URL pattern specific to request params

We have a situation where we want to use filter for URL's containing some specific request parameters, e.g: http://mydomain.com/?id=78&formtype=simple_form&....... ...
2
votes
1answer
2k views

Tomcat not able to get ServletContext of another webapp

I am using tomcat 6 and I have two webapps. One is webapp1 and the other one is webapp2. From a filter inside webapp2, I am trying to access the other webapp i.e webapp1. My Filter code is something ...
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 ...
3
votes
5answers
8k views

What is doFilter doing in doFilter method in filters of java?

I wanna know that in our dofilter method i made this call chain.doFilter. What is doFilter doing inside a doFilter?Is it not gonna get recursive call?
2
votes
3answers
3k views

Writing a Servlet that checks to see if JSP's exist and forwards to another JSP if they aren't

UPDATE: To clarify a generic error catcher that catches 404's doesn't have enough granularity for me. I need to do this only if the jsp is in a particular directory and then only if the filename ...
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, ...
2
votes
2answers
740 views

JBoss 4: where do I deploy global filters?

I want to use "global" HTTP filters. Therefor, I edited deploy/jboss-web.deployer/conf/web.xml and added: <filter> <filter-name>StatisticsFilterHitCount</filter-name> ...
2
votes
1answer
538 views

Java deflate response

Hello all I want to make a filter for tomcat to deflate all responces of certain MIME type. Any guidelines? ... String ae = request.getHeader("accept-encoding"); if (ae != null && ...
1
vote
1answer
375 views

FacesContext#getCurrentInstance() returns null in Filter#doFilter()

Inside a public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) I wanted to get the session using ...
1
vote
2answers
2k views

Using Tomcat, @WebFilter doesn't work with <filter-mapping> inside web.xml

Here's a working web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
1
vote
2answers
3k views

Servlet Filter going in infinite loop when FORWARD used in mapping in JSF

I have a filter defined in web.xml like following:- <filter-mapping> <filter-name>AuthenticationFilter</filter-name> <url-pattern>/*</url-pattern> ...
1
vote
2answers
2k views

what is the use of filter and chain in servlet?

chain.doFilter(req,res); which we used in servlet program.i want to know what is the use of the method in servlet? Also what is the use of filter and chain concept ion java servlets?
0
votes
1answer
328 views

Spring MVC: How to modify response sent from spring controller?

I have an app with Spring MVC 3.1.3 and the UI developed with Dojo 1.4. The application has few controllers which handle binary files uploaded through dojo.io.iframe.send. The controller sends a json ...
0
votes
1answer
1k views

Filter is not retrieving request.getAttribute()

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { try { String logged = (String) ((HttpServletRequest) ...
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 ...
8
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
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> ...
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
792 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 ...
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 ...
4
votes
1answer
2k views

Https on JSF 2, for protected resources and login

I have a managed bean with 2 attribute: userName & password (with its respective getters and setters methods), and a login() method that access the database to verify login credentials. My ...
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 ...
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
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
866 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 ...
3
votes
3answers
1k views

Can I intercept calls for my WSDL on Glassfish (or on any app server)?

I've created a Java web service using the @WebService annotation and deployed the service to a Glassfish server that lives behind a proxy server. The problem is when someone accesses our WSDL and ...
2
votes
1answer
959 views

Execute and render JSP inside a Filter

I have a JSP that contains the content at the top of my page, let's call it header.jsp. I would like to render this JSP and flush it out to the user before building up the rest of my page, for ...

1 2 3