How to get eclipse JSP Expression Language validation to accept JSP 2.2 EL constructs?
问题 I have a page with the following JSP tag: <c:set var="task" value="${report.taskMap['bin:'.concat(bin.id)]}" /> This works fine, but Eclipse complains about it being a syntax error, presumably because the '.concat(bin.id)' part is a JSP 2.2 extension not supported in older versions of JSP. Is there any way of telling Eclipse to accept this syntax? Or, alternatively, is there a way of telling Eclipse not to consider JSP validation errors as errors, and mark them as warnings instead? I'd rather