Re: [S2] Result definitions are not overridden on subtyping using codebehind

2008-10-28 Thread Don Brown
I'd go with bug. Please file a JIRA ticket at http://issues.apache.org/struts Thanks, Don On Tue, Oct 28, 2008 at 11:16 PM, Leonard Broman <[EMAIL PROTECTED]> wrote: > I am using 2.0.11.2. When I am inheriting action, the codebehind > plugin is not overriding the definition for the supertype. >

[S2] Result definitions are not overridden on subtyping using codebehind

2008-10-28 Thread Leonard Broman
I am using 2.0.11.2. When I am inheriting action, the codebehind plugin is not overriding the definition for the supertype. Example: @Result(value="foo.jsp") public class FooAction ... @Result(value="bar.jsp") public class BarAction extends FooAction Then exeuting bar.action renders foo.jsp any