On 2012-12-19 02:48, Mike McNally wrote: > When I've got a UrlBinding like "/whatever/{foo}/{bar}", and I create > and use a ForwardResolution to "/whatever/hello/world", it kind-of > seems like it'd be nice if in the action bean "foo" was set to "hello" > and "bar" was set to "world". As far as I can tell, however, that > doesn't happen. > > Is there something I'm missing?
This works fine for me, see minimal testcase below, which works when you add a servlet mapping to StripesDispatcher for /action/* in web.xml: package some.thing.stripes; import net.sourceforge.stripes.action.*; @UrlBinding("/action/test/{foo}/{bar}") public class TestActionBean implements ActionBean { private ActionBeanContext context; private String foo, bar; @Override public ActionBeanContext getContext() { return context; } @Override public void setContext(ActionBeanContext context) { this.context = context; } public String getFoo() { return foo; } public void setFoo(String foo) { this.foo = foo; } public String getBar() { return bar; } public void setBar(String bar) { this.bar = bar; } public Resolution baz() { return new StreamingResolution("text/plain", String.format("foo=%s,bar=%s", foo, bar)); } } Matthijs ------------------------------------------------------------------------------ LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial Remotely access PCs and mobile devices and provide instant support Improve your efficiency, and focus on delivering more value-add services Discover what IT Professionals Know. Rescue delivers http://p.sf.net/sfu/logmein_12329d2d _______________________________________________ Stripes-users mailing list Stripes-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/stripes-users