Tagged Questions
0
votes
1answer
20 views
Compression servlet filter that supports minimum object size
I wish to add compression to our spring based web-service (serving both xml and json), I see that there are a number of different gzip compression filters, but not sure which is accepted as the most ...
0
votes
1answer
102 views
spring servlet filter
I am trying to implement servlet filter for spring to implement application access control based on user role can you people recommend me some tutorial for that since I am new in spring mvc.
Thanks
1
vote
0answers
49 views
Configurable App Modules - Servlet 3 - Enabling/Disabling servlets programmatically
I have a number of Servlet modules that I would like to be able to enable/disable based on some external property. I'm using Servlet 3.0, currently all the servlets are setup in web.xml.
I know I ...
0
votes
1answer
244 views
OpenSessionInViewFilter cannot be cast to javax.servlet.Filter
I'm getting an exception when I try to start my Java EE Spring+Hibernate application in Tomcat7. This used to work, but I think I screwed something up while migrating to Tomcat7. The exception is
...
1
vote
1answer
103 views
Making Spring aware of Jersey filter
I have a class which implements ContainerRequestFilter, i want to inject some spring dependencies into it so i need to make Spring aware of the Jersey filter. The filter itself is configured in my ...
0
votes
0answers
116 views
Overriding init method of a servlet filter and registering it as bean in spring.xml
I have a filter as below.
public class MyFilter implements Filter
{
protected String _configValue = null;
protected IMyServiceManager _mgr = null;
public MyFilter()
{
}
public ...
0
votes
1answer
108 views
convert filter configartion in web.xml to spring.xml
I have created a filter and configured in my web.xml as follows.
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" ...
0
votes
2answers
28 views
Prevent connection to Access Manager
GlassFish, Policy Agent, OpenAM, Portal on Spring:
I have a task to prevent access to Access manager from some blocked users (users are blocked dynamically by using portal), so that they could not ...
0
votes
1answer
114 views
Java Filter: Writing object to response having “marshalled” format
I am using Spring Delegating proxy filter to do some validations in Filter class before passing on to Controller. On failed validations i intend to return user defined "ErrorMessage" object in json ...
2
votes
0answers
191 views
Is there a regular expression based servlet filter for web.xml?
I am in the process of migrating some code from Guice to Spring. guice-servlet has the nice feature that allows you to match servlet filters using regular expressions. For example I am using
...
1
vote
0answers
480 views
org.springframework.web.filter.HiddenHttpMethodFilter cannot be cast to javax.servlet.Filter
I have a maven webapp based on spring framework 3 and when I run the application on jetty using maven-jetty-plugin by running the command mvn -e clean jetty:run it runs alright, but when I run it on ...
1
vote
2answers
145 views
Implement custom security/filters on a part of a web app Java EE/Spring
I'm working on a Java EE web application where I use Spring MVC and Spring security.
Until now, I succeeded in implementing the common security features using a custom userService (which retrieves the ...
1
vote
2answers
539 views
Adding Customized filter in spring security 3.0
I am trying to add another filter named captcha verification filter along with spring security's authentication filter.
I am getting this error. What I am missing ?
Initialization of bean failed; ...
0
votes
2answers
376 views
Spring Security Filter Mapping - Disable on certain Url Pattern
I have the following servlet definitions:
<servlet>
<servlet-name>licenseGenService</servlet-name>
...
1
vote
1answer
150 views
Java EE conditional filter mapping
I have a Spring MVC web application with the following in web.xml:
<filter>
<filter-name>foo</filter-name>
<filter-class>bar.foo</filter-class>
...
1
vote
0answers
219 views
How can I get session scoped bean in filter from session? (jsf 2.1)
How can I retrieve session scoped bean in filter? I have tried like that, but it returns null.
this is my session scoped bean:
@SessionScoped
@ManagedBean(name="sessionData")
public class ...
2
votes
1answer
131 views
spring mvc pass & in queryString
I would like to pass in queryString like following in Spring MVC
?search="This & That"&value=true
But, when I am trying to access HttpServletRequest, it returns only "This " for ...
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 ...
0
votes
0answers
312 views
Something somewhere is encoding the URL with doFilter, but RequestDispatcher.forward does not do the same encoding
I added a LocaleUrlFilter to a Spring MVC project wanting to capture locale in the URL. The filter is working, but there are something encoding the url before it gets passed to the controllers.
In ...
0
votes
1answer
390 views
Can I use a SimpleJaxWsServiceExporter with a javax.servlet.Filter?
I would like to set up a webservice endpoint using Spring's SimpleJaxWsServiceExporter for ease of use, but I also need to protect the webservice using a subclass of Jespa's HttpSecurityFilter
I ...
0
votes
1answer
312 views
Relationship between Spring DispatcherServlet and Filters
Spring MVC uses a DispatcherServlet to route control to an appropriate Controller. But where do filters fit into the flow? If I specify a filter to perform session management or authentication, will ...
3
votes
1answer
991 views
Spring Security with DelegatingFilterProxy
I have created a spring security Filter as below.
<!-- Enables Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
...
1
vote
1answer
1k views
Using Spring-Test-MVC to unit test Spring-Security - Integrating the FilterChain / ServletFilter
So we're almost at our goal to test-drive our spring web-mvc application. We're using spring security to secure URLs or methods and we want to use Spring-Web-Mvc to test the controllers. The problem ...
0
votes
1answer
1k views
Replacing the default filter at position SESSION_MANAGEMENT_FILTER
I want to replace the default SessionManagementFilter with my own, but I'm running into this
17:31:32,901 ERROR [[/accounts]] Exception sending context initialized event to listener instance of class ...
0
votes
2answers
226 views
How to pre-process the request body in Spring before passing it to the a Controller?
I am implementing a RESTful service and I would like to validate the XML against an XSD in an interceptor before passing it on the a CastorUnmarshaller.
Though, in the WebRequestInterceptor I have to ...
0
votes
1answer
356 views
SimpleMappingExceptionResolver vs ExceptionFilter
Currently I am working on an application using a custom Servlet Filter to catch all Exceptions:
<filter-mapping>
<filter-name>ExceptionFilter</filter-name>
...
0
votes
3answers
404 views
How can I peek into a Mesage from a Filter?
I tried to use a javax.servlet.Filter to peek into a message.
public void doFilter( ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
...
0
votes
2answers
1k views
Implement No Cache using Spring Security
I would like to know as to how can I implement a No Cache functionality using Spring Security. That is , when a user logs out of the application he/she can always make use of the browser back button ...
0
votes
1answer
128 views
How to maintain request.getReader() with a filter?
After I added a filter to my app, I am not able to read anything from HttpServletRequest.getReader() in my controllers.
I am calling request.getParameter() a few times, but other than that my filter ...
3
votes
1answer
2k views
Spring interceptor vs servlet filter
What advantages does a Spring interceptor have over a servlet filter?
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>
...
1
vote
1answer
206 views
Filter to track time spent by an user in each page in a spring application
I am working on a spring application in which I want to track the users time spent on each page. I am planning to do it via Spring filters. Is there a spring filter that intercepts each and every page ...
4
votes
2answers
216 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
508 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, ...
2
votes
2answers
178 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 ...
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 ...
1
vote
2answers
840 views
Using Spring MVC is it possible to define filtering methods within controllers themselves
I know that using Spring MVC it is possible to annotate an entire controller class with a RequestMapping annotation. It is also possible to annotate separate methods with Requestmapping, so that each ...
1
vote
3answers
545 views
how can you bypass the filter chain in magnolia cms?
How can I bypass all the filter chain?
I'd like that the url's that start with /web/ to be bypassed so that the spring dispatcher can receive them.
Thanks :)
1
vote
2answers
2k views
How can I get a Spring bean in a servlet filter?
I have defined a javax.servlet.Filter and I have Java class with Spring annotations.
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Bean;
...
3
votes
1answer
166 views
How to get hold of the (un)marshalled message for logging
I have a Spring MVC REST service that uses XStream to convert the messages to and from XML.
Is there any way I can print the xml (ie the body) from the request and response to a normal log4j logger?
...
1
vote
3answers
543 views
add custom filter class in applicationcontext.xml
my application is using spring applicationContext.xml. i have a custom filter class ( CustomFilter implements Filter) that i want to use in my application . Is the proper way to do this is to create a ...
4
votes
4answers
3k views
NullPointerException in Spring Framework (or what?)
I have run into a very weird problem, and I have simply no idea, where to start. In our working application, one of our pages seems to fail kinda arbitrarily - that is, sometimes it works, and ...
1
vote
1answer
3k views
web.xml <filter-mapping> not working when using <servlet-name>
I have a web.xml that has this in it:
<filter>
<description>CASRebroadcastFilter</description>
<filter-name>CASRebroadcastFilter</filter-name>
...
0
votes
0answers
227 views
Filter and template library order/sequence questions in a Spring mvc app
I have a filter in Spring MVC app as documented here. MVC app is configured to use JSTL view. A request made to the url (to be intercepted by filter) seems to work fine, so I see
request intercepted ...
0
votes
2answers
439 views
Tomcat filters: Valid for an entire app minus some URLs
In my Spring application I use org.springframework.web.filter.ShallowEtagHeaderFilter to add ETags. That works great, except when I output REALLY large data. Then my application runs out of memory and ...
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.
...
0
votes
0answers
362 views
HIbernate, Spring, Lazy loading and I can't use Filters [duplicate]
Possible Duplicate:
I can't use Spring filters in servlet-context XML
I've the usual problem with Hibernate and Spring about lazy loading. In particular I can do a query with Criteria, ...
1
vote
1answer
873 views
Spring/Hibernate: Keep session open for thread, or open a new one?
I am using Spring 3 together with Hibernate. I have a user request that starts a java thread in the spring controller and then a response is sent, so the thread might continue to work while the user ...
0
votes
2answers
79 views
What will tomcat do after I type the root link of a spring application?
Let's say I have an application written with spring framework, and I want to know, when I typed in :
http://localhost:8080/test
link, what tomcat will do to generate response for this request ?
Should ...
0
votes
2answers
215 views
spring - how to pass a value from an app to a filter
So I need to add a filter to a spring app, such that after the response has been flushed back to the client, I write to a log file. The values I want to write to the log file are determined within the ...

