Hey, How do I include some of a parent action's properties in the JSON result of an action? In the following example, I'd like MyAction2's JSON result includes name1 and name2 from MyAction1 too.
public abstraction class MyAction1 extends ActionSupport { protected String name1; protected String name2; .... } public class MyAction2 extends MyAction1 { ...} Thanks! Daniel