Hello,
env: eclipse30RC1 + myeclipse
description:
I have a jsp:include like that:
<jsp:include page=”/jsp/panels/TSPanel.jsp” flush=”true” >
<jsp:param name=”aT” value=”<%= dialogBean.getAT() %>” />
<jsp:param name=”sC” value=”<%=db.getSortColumn() %>” />
</jsp:include>
db.getSortColumn() is of type int.
This jsp compile in any jsp container but myeclipse reports errors :
The method setAttribute(String, Object) in the type ServletRequest is not applicable for the arguments (String, int). BUT hey, i am working with that syntax in oter ide without problems.
The jasper copiles ok that jsp.