0
votes
1answer
213 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
0
votes
2answers
293 views

Can't understand Shiro behavior on custom login page request

I'm using Apache Shiro to secure my Spring MVC application. This is my config: <!-- Shiro --> <bean id = "hibernateRealm" class = "com.bidapp.presentation.shiro.HibernateRealm" /> ...
0
votes
1answer
416 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
0answers
124 views

Setting session-scoped bean in servlet filter wrapped by DelegatingFilterProxy in Spring

I'm assembling a somewhat simple webapp step by step, using Spring MVC. I have an authentication/authorization servlet filter using the DelegatingFilterProxy. The process was working well until I ...
0
votes
1answer
100 views

How to track number of hits to a particular web app on application server

I am working on development of web application where i need to track the number of hits to a particular web application from client side using Ajax. MyEar has below wars: APP-a APP-b (using Spring ...
0
votes
1answer
336 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 ...
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 ...
2
votes
1answer
1k views

Simple web application filter doesn't filter request

Starting my way with STS and created a new basic "Hello World" Spring MVC project. I wanted to add a filter to my app so I created a filter (HelloWorldFilter.java) with the following doFilter method: ...
0
votes
0answers
415 views

Issue while redirecting from a filter

I have an issue with a filter in an Spring 3 MVC web application. My enviroment is configured as followed: SpringSource Tool Suite, JDK 7, Tomcat 7, Maven 3.0.2, Hibernate 3 and MySQL 5 database. ...
3
votes
1answer
2k views

Spring interceptor vs servlet filter

What advantages does a Spring interceptor have over a servlet filter?
1
vote
1answer
227 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 ...
7
votes
3answers
7k 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
879 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 ...
3
votes
1answer
173 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? ...
0
votes
1answer
432 views

Two Spring RequestContextFilter and @Component annotations

I have two filter classes extending from org.springframework.web.filter.RequestContextFilter, both configured in the web.xml in the same way, both using @Component annotation. When I had only one, ...
1
vote
3answers
555 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 ...
0
votes
1answer
687 views

Custom handling for error 500?

i want to add the ability in my application which is using spring framework that whenever an error 500 occurs in any place i handle it using filter or wrapper maybe by sending an email with a full ...
3
votes
2answers
1k views

Which one to use: OpenSessionInViewInterceptor or OpenSessionInViewFilter?

I'm having a hard time deciding which "Open Session In View" to use: configuring OpenSessionInViewInterceptor using Spring MVC's interceptor with or configuring OpenSessionInViewFilter in web.xml's ...
0
votes
1answer
770 views

Setup a Filter that will set the Response Header to only Image File(s)

I am having a caching problem based on the discussion that I have in this link But I am not sure how to go about with the suggestion on setting the response headers on my Spring MVC. Does anybody ...
2
votes
1answer
2k views

Spring Framework filter, bean not injected

There are 2 entries for a Servlet Filter, one in web.xml and one in Spring applicationContext.xml I added the filter into applicationContext.xml because I wanted to inject creditProcessor bean into ...
2
votes
1answer
4k views

Why use a Url Rewrite Filter in Spring?

A Spring app I'm using declares a Tuckey UrlReWrite Filter and then sets up a rewrite rule as the following: <rule> <from>^/(.*)$</from> <to ...
0
votes
1answer
1k views

Spring MVC and parsing HTML

I have a controller class as in the following code segment: @Controller public class SiteEntryController { @RequestMapping(value="/index.htm") public ModelAndView handleIndex( ...