i have got problems to get completion work with EL.
the code is alright, because it works just fine in intellij idea.
our development department is thinking about to switch to myeclipse but only if it does support EL code completion.
anybody experiencing the same problem? JSP 2.0 should be better supported.
anotherthing what realy is anying is the fact that MyEclipse shows an warning when you use <jsp:bean .. e.g. (class is abbreviated)
<jsp:useBean id="copyOrder" class="com.zooplus....." scope="request">
<jsp:setProperty name="copyOrder" property="customerId" value="${param.id}"/>
<jsp:setProperty name="copyOrder" property="orderId" value="${param.o_id}"/>
<jsp:setProperty name="copyOrder" property="userId" value="${sessionScope.userid}"/>
</jsp:useBean>
saying that “copyOrder” is never read localy eventhough it’s used e.g.
<c:if test="${copyOrder.directDeliveryOrderId != '0'}">
<a href="${applicationScope.aspPath}/secure/admin/r_bestellungen.asp?f=r&i=${copyOrder.directDeliveryOrderId}">${copyOrder.directDeliveryOrderId}</a>
</c:if>
if MyEclipse doesn’t support that we probably stick with intellij idea
patrick
patrick