Reputation: 21725
I have defined a bean
<logic:iterate id="keyRecDetail" name="KeyRecInquiryForm" property="keyRecDetailList" indexId="rowNum">
Now i want to access value of ${keyRecDetail.keyRecShipMethod} in my jsp page and put this value in a string.how to do this?
Upvotes: 1
Views: 192
Reputation: 18064
Example:-
Declare
<jsp:useBean id="emp" class="bean.Employees"/>
Get the property
<jsp:getProperty name="emp" property="firstName"/>
Upvotes: 1