It's a property on action definition. For the example: <action name="StatusDocumento" method="list" class="fatura.controller.StatusDocumento"> <result name="success">statusDocumento/list.jsp</result> <result name="json" type="json"> <param name="ignoreHierarchy">false</param> <param name="excludeProperties">dao</param> </result> </action>
Abraços, Nelio Souza Santos Filho Solution Engineer http://about.me/nssantos Em 03/11/2011, às 13:56, Daniel Ruan escreveu: > 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