I am working on a legacy system which has some old jsp files.
testParent class has set of testChild class. testParent has a method which returns a single testChild object and testChild object has numberIWant.
Method in testParent
public TestChild giveTestChild()
{
TestChild testChild= this.testChilderen.iterator().next();
return testChild;
}
and testChild.getNumberIWant
this how I tried to implement in jsp
<jsp:useBean id="parentClass" class="package.TestParent" scope="request"/>
<jsp:useBean id="childClass" class="package.TestChild" scope="request"/>
<input:text name="numberIWant" bean="parentClass.giveTestChild()"
attributesText="id='numberIwant' " size="20"/>
But its not working. Because of the Hibernate I testParent is always available to me and dont want to make separate call for testChild
