i'm using <c:foreach to read my data, but some data are not exsit...
for example
look at the source :
the place i used -{teacher.role}Code:<c:forEach items="${teacher_list}" var="teacher"> <tr> <td> ${teacher.teachid} </td> <td> ${teacher.fistname} </td> <td> ${teacher.lastname} </td> <td> -{teacher.role} </td> <td> -{teacher.majorCode} </td>
it should be
and in next place it should beCode:userAccountFactory.getUserAccount(teacher.teachid);
what should i do? i need any possible option, without overheating server... cause server is old too :|Code:userAccountFactory.getUserAccount(teacher.teachid).getMajor.getMajorCode;


Reply With Quote