Re: Struts2 POJO population from URL

2011-08-28 Thread Maurizio Cucchiara
In the same way, try to initialize the Ghi and Def object before the action is invoked. Maurizio Cucchiara On 28 August 2011 07:45, James Jithin wrote: > I have a Java Object with many other nested Objects and lists of Objects. > When the request arrives from the client, I see that the Object i

Re: Struts2 POJO population from URL

2011-08-28 Thread Maurizio Cucchiara
did you take a look at log? did you see any error? I don't know if it really help, but I usually prefer to initialize the collection inside the action class directly. For instance: private List defList=new ArrayList(20); Such that you gain more control over the chosen implementation, the lenght, e

Struts2 POJO population from URL

2011-08-27 Thread James Jithin
I have a Java Object with many other nested Objects and lists of Objects. When the request arrives from the client, I see that the Object is populated only to a few levels. Is there any configuration that sets this is Struts 2? Here is my example. class MyActionClass extends ActionSupport {