up vote 1 down vote favorite
share [g+] share [fb]

I'm using JSTL to generate a JavaScript object in a bit of inline script in a JSP, like this:

<script>
    var data = [
        <c:forEach items="${MyData}" var="Datum" varStatus="status">
        {
            foo: ${Datum.foo},
            bar: '${Datum.bar}'
        }<c:if test="${not status.last}">,</c:if>
        </c:forEach>
    ];
</script>

and Eclipse is totally unable to validate it. The HTML it generates is correct - so how do I make Eclipse stop trying to interpret/validate the JavaScript?

I've come across a number of similar questions here on SO, but none of them worked - including going to Preferences -> Validation and checking the "Suspend all validators" box!

link|improve this question

Aside: you should consider using a proper JSON encoder to produce this sort of structure rather than trying to do it yourself. Otherwise, characters like ' in Datum.bar aren't going to get escaped to fit a JS string literal and you'll have script-injection security holes. – bobince Sep 1 '10 at 21:53
@bobince - You're totally right; I'll get there eventually. For now, I'm just trying to get the prototype together, and I'm actually using bar: '${fn:replace(Datum.bar, "'", "\\'")}' for exactly the problem you mentioned. The strings aren't from user input anyway... – MДΓΓ БДLL Sep 1 '10 at 21:57
Watch out for that last comma after bar: .... It will crash IE. – slebetman Sep 1 '10 at 21:57
@slebetman: see the <c:if test="${not status.last}">,</c:if>? That omits the trailing comma. :) – MДΓΓ БДLL Sep 1 '10 at 22:18
@Bears: It omits the trailing comma for the array. But the objects within the array still has the comma. You wrote: bar: '${Datum.bar}', <-- that's a trailing comma right there – slebetman Sep 2 '10 at 1:11
show 1 more comment
feedback

2 Answers

Did you try to escape the code with CDATA?

<script>
  //<![CDATA[
      ...
  //]]>
</script>

With or without //

link|improve this answer
Much as I wish that fixed things - no such luck. – MДΓΓ БДLL Sep 1 '10 at 22:19
feedback

In case someone interested in a workaround;

putting the code in a jsp file and including it withing the jsp file will prevent javascript validation.

<script><%@include file="data_include.jsp" %></script>

another quick and dirty workaround:

<script>var data = [];</script>

<c:forEach items="${MyData}" var="Datum" varStatus="status">
    <c:out value="${'<script>'}" escapeXml="false"/>
        data.push({
            foo: ${Datum.foo},
            bar: '${Datum.bar}'
        });
    <c:out value="${'</script>'}" escapeXml="false"/>
</c:forEach>

Even if you do the serialization on the server side, Eclipse(Galileo) still gives validation errors for c:out and ${} within the script tag. I need to do something like the following, anyway:

<c:out value="${'<script>var data = ${jsonData};</script>'}" escapeXml="false"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.