Struts « Filter « JSP-Servlet Q&A





1. Struts2 combine with domain specific servlet    stackoverflow.com

I have struts2 web application. Right now I need embed with help of iframe some functionality from stand-alone servlet. But according to following rule, servlet is never get calling.

<filter-mapping>
   ...

2. Filters not working in Struts2    stackoverflow.com

for some unknown reason I'm not being able to use filter on struts2. I'm using apache tomcat and using filter to restrict user access ( I preffer rather than Interceptors). Is ...

3. Will it be a good practice to extend the Struts Framework's FilterDispatcher?    stackoverflow.com

I am trying to use Hibernate with Struts. Will it be a good pratice if I extend the FilterDispacther for calling Hibernate Utility classes? Anyone have any views? I want to discuss ...

4. struts2.0.8 javax.servlet.Filter implementation problem    struts.1045723.n5.nabble.com

i'm trying to use a custom filter to implement authorization and i can't get the damned thing to work (i'm an absolute beginner, be warned). i'm using struts2.0.8 with tomcat 5.5 my doFilter method looks like this public class AuthorizationFilter implements Filter { public void doFilter(ServletRequest request, ServletResponse response, ...