RE: using CompositeActionMapper

2009-07-02 Thread Martin Gainty
-0400 > From: d...@newfield.org > To: user@struts.apache.org > Subject: Re: using CompositeActionMapper > > rsilva wrote: > > I dont not understand very much about Struts2 inject process but I fixed my > > problem extending the compositeActionMapper with the following one: > >

Re: using CompositeActionMapper

2009-07-02 Thread Dale Newfield
rsilva wrote: I dont not understand very much about Struts2 inject process but I fixed my problem extending the compositeActionMapper with the following one: public class DebugCompositeActionMapper extends CompositeActionMapper { @Override @Inject(StrutsConstants.STRUTS_MAPPER_COMPOSITE

Re: using CompositeActionMapper

2009-07-01 Thread rsilva
;> >> Allen Lee wrote: >>> Hey there, >>> >>> >>> Has anyone successfully gotten CompositeActionMapper to work and how? >>> >>> >> >> >> >

Re: using CompositeActionMapper

2009-07-01 Thread rsilva
t;compositeMapper" > class="org.apache.struts2.dispatcher.mapper.CompositeActionMapper" /> > > > > > > > > > > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user

Re: using CompositeActionMapper

2008-09-28 Thread Jeromy Evans
Allen Lee wrote: Hey there, Has anyone successfully gotten CompositeActionMapper to work and how? name="addressMapper" class="com.mycompany.actionmapper.CustomActionMapper" /> name="compositeMapper" class="org.apache.struts2.dispatcher.mapper.CompositeActionMapper" />

using CompositeActionMapper

2008-09-26 Thread Allen Lee
Hey there, I'm trying to get the CompositeActionMapper working with Struts 2.1.2 (combining the Restful2ActionMapper and our own custom action mapper to handle the default index page where the Action name is null in namespace "/", i.e., http://localhost/our-app/ ) a