Tagged Questions

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)

15
votes
3answers
12k 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 ...
11
votes
7answers
7k 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 ...
10
votes
3answers
372 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 ...
10
votes
5answers
17k 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 ...
9
votes
3answers
9k views

How to use a filter in Java to change an incoming servlet request url?

How to use a filter to change an incoming request url : From : "http://nm-java.appspot.com/Check_License/Dir_My_App/Dir_ABC/My_Obj_123" To : ...
6
votes
3answers
242 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 ...
6
votes
4answers
825 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
6answers
2k views

Most useful java servlet Filter out there?

Very interesting tricks can be done with java servlet filters in security, performance, etc. What are the best servlet filters out there?
6
votes
3answers
17k 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 ...
5
votes
5answers
368 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 ...
5
votes
2answers
284 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
1answer
969 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 ...
4
votes
3answers
60 views

Servlet Mappings with Variables(Tomcat 7.0)

Is it possible to map URLs to servlets (maybe something specific with Tomcat) so that the two following URLs (with {id}'s being variables retrievable from code), /users/{id}/a /users/{id}/b map to ...
4
votes
3answers
145 views

Global Java Servlet Filter, is it possible?

I'm writing a project for academic purposes which among other irrelevant stuff, includes writing a filter which monitors servlet/jsp response times. The thing is that the filter should work on every ...
4
votes
2answers
2k 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
199 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 ...
4
votes
2answers
2k 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?
4
votes
1answer
585 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 ...
4
votes
1answer
2k 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 ...
4
votes
1answer
180 views

How do you introspect web.xml from a servlet?

Is there a way for a servlet filter to get a list of all servlets and their mappings?
3
votes
1answer
52 views

Spring interceptor vs servlet filter

What advantages does a Spring interceptor have over a servlet filter?
3
votes
2answers
49 views

Spring DelegatingFilterProxy multi-threading concerns

While hunting down bugs I came across the Spring 3.0.5 source code DelegatingFilterProxy and I wonder whether it bears a performance bottleneck or not. Given that per web app there is only one ...
3
votes
1answer
73 views

Developing a plugin based architecture on top of Spring

I've been scratching my head around developing a simple plugin based architecture on top of Spring, for one of my current apps. No matter how much separation one could achieve using patterns like MVC, ...
3
votes
1answer
70 views

Servlet filter (autologin) precedence over declarative security checks

Short question. How is it possible to execute servlet filters before any declarative security check is performed? Long question. For my web application I'm trying to manage all my security needs ...
3
votes
1answer
171 views

Servlet Filtering using java EE 6 annotation?

Is it possible to simulate a servlet filter chain using @ApplicationPath and @Path annotations in EE 6? Example: @ApplicationPath("/api") class Filter extends Application { @Path("/*") ...
3
votes
1answer
56 views

Servlet Filters - Identifying the called Servlet/JSP

I'm writing a Servlet Filter which measures http request and response times. The filter is deployed on Apache Tomcat 7 web server. I was wondering if there's any way to identify which Servlet or JSP ...
3
votes
1answer
104 views

servlet-filters precedence

Since since filters are chained one after another, I cannot know when to remove MDC/NDC (log4j) information. Which is the topmost servlet filter? I have one defined inside ...
3
votes
3answers
659 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 ...
3
votes
1answer
385 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 ...
3
votes
3answers
217 views

Is it possible for a servlet filter to work out which servlet will handle the request

I'm writing a filter that performs logging and I need to disable this logging if the request is going to end up at a certain servlet. Is there any way for the filter to know which servlet will ...
3
votes
3answers
480 views

Where can I find a Java Servlet Filter that applies regex to the output?

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

Servlet Filter vs. ServletRequestListener

I want to bind a JPA EntityManager to the current thread on each request (via ThreadLocal), what could be done via a ServletRequestListener or Filter. The listener looks cleaner and I don't need the ...
3
votes
2answers
2k views

Is it possible to write a servlet filter to take inspect HTTP response codes?

Is it possible to write a servlet filter to take inspect HTTP response codes? I want to write a filter that will non-destructively inspect outgoing HTTP response codes. But, there does not seem to ...
3
votes
5answers
1k views

ThreadLocal + java.sql.Connection + servlet filter = 2009?

I am writing some servlets with plain old mostly-JDBC patterns. I realized that I have several objects that would like to share a single transaction, and I'd like to enforce that one HTTP transaction ...
2
votes
2answers
156 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 ...
2
votes
2answers
49 views

Request/response handling in javax.servlet.filter class

How to detect if it is a request/response the filter class is going to handle? Also I need to cancel the request to my servlet and want to create my own response and return it from dofilter method. Is ...
2
votes
1answer
60 views

Cannot Filter Context Root Servlet Requests

I have a @WebServlet("") and a @WebFilter(urlPatterns = {"", "/", "/*"}, asyncSupported = true) But the filter is not being invoked for the servlet :-( I am using @WebServlet("") instead of ...
2
votes
1answer
80 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> ...
2
votes
1answer
86 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 ...
2
votes
2answers
58 views

Best Practice to control access to service/screen access during run time in Spring based web application

I manage few spring based web applications. for example if my client is a flex application, with many modules/screens. Access to the screen or page or even a spring service is controlled by spring ...
2
votes
1answer
98 views

Web Filter blocking RichFaces

I create a filter and it works fine but my richfaces doesn't work correctly anymore, here is my web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app ...
2
votes
1answer
295 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
1answer
108 views

Filter do not initialize EntityManager

I trying to use the Open Session in View pattern, but everytime I try to catch the EntityManager in my ManagedBean the entityManager come NULL here is how I'm doing: package filters; // imports.. ...
2
votes
1answer
135 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 ...

1 2 3 4 5 8