I tried to implement security Interceptor by implementing Interceptor
interface. It works well for the action beans , just fine.
Now how do I make sure my JSP go through that interceptor, if I directly
access them.

Lets say I want to access  localhost/myapp/app.jsp directly, I want my
interceptor to kick-in between and reject direct access to this page.
I want to make sure user don't access the JSP directly. How do I do it?.


<filter-mapping>
        <filter-name>StripesFilter</filter-name>
        <url-pattern>*.jsp</url-pattern>
        <dispatcher>REQUEST</dispatcher>
    </filter-mapping>

<init-param>
            <param-name>ActionResolver.Packages</param-name>

<param-value>com.myapp.Registration,/WEB-INF/classes</param-value>
            <!--
<param-value>com.myapp.Registration,/WEB-INF/classes</param-value>-->
        </init-param>




I have already configured Stripes Filter and have action beans configured
for these JSP pages, even then my interceptor doesn't kick-in.

How do I address this issue?.

Thanks,
Venkat
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to