Hi,

Given a request to http://xyz.com/

I would need to have the above request hit a Stripes action which in turn sends 
a resolution to http://xyz.com/home.jsp.  

In general, I'd like all requests to hit an action first before the page is 
served.  I read up on stripes:useActionBean, but alas, it's quite unclear to me 
how that works.

I've tried the below without success. I'd appreciate all your help.  A 
description of the data flows would be greatly appreciated.

Thanks!

@UrlBinding("/")
public class HomeActionBean
    extends BaseActionBean
{    
    @DefaultHandler
    public Resolution home()
    {
        return new ForwardResolution("/home.jsp");
    }
}


      


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to