Should the parameter be passed into Action class by
http://xxx/foo?a=b ?

Can the Action class get the parameter value
and the link is http://xxx/foo only?

I do not want the parameter appear in the URL.

Thanks

2005/10/8, Laurie Harper <[EMAIL PROTECTED]>:
> 梁炳場 wrote:
> > Can I do the following?
> >
> > Same action class sets different attribute
> > according to the change of parameter?
> >
> > Thanks
> >
> > <action path="/userProfileMaint"
> >       type="com.erp.struts.SetRoleHref"
> >       parameter="userProfileMaint"
> >
> > <action path="/quotationMaint"
> >       type="com.erp.struts.SetRoleHref"
> >       parameter="quotationMaint"
> >
> > public class SetRoleHref extends Action {
> >           String myValue = request.getParameter("parameter");
> >           session.setAttribute("rolehref", myValue);
>
> Sure, you can do that, except that the 'parameter' attribute in the
> action mapping isn't exposed as a request parameter (those come from the
>  HTTP request). You need to call getParameter() on the ActionMapping
> instance instead.
>
> L.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to