I pass an object (of user defined class) from my servlet on request scope
request.setAttribute("currentStudent", cStudent);
and from my jsp page I access the object as following
First Name : ${requestScope.currentStudent.firstName}
everything works fine. but why I don't see object properties on the on the Eclipse code assist? I mean on normal java/jsp code as soon as I hit dot after object i see the get/set properties suggestions. why I don't see such suggestion in the case of EL?