Since I reinstalled Eclipse Helios I have a lot of these errors in my problems view:

Encountered "<EOF>" at line 0, column 0.
Was expecting one of:
    <INTEGER_LITERAL> ...
    <FLOATING_POINT_LITERAL> ...
    <STRING_LITERAL> ...
    "true" ...
    "false" ...
    "null" ...
    "(" ...
    "-" ...
    "not" ...
    "!" ...
    "empty" ...
    <IDENTIFIER> ...
    "not" ...
    "!" ...
    "-" ...
    "empty" ...
    "true" ...
    "false" ...
    <INTEGER_LITERAL> ...
    <FLOATING_POINT_LITERAL> ...
    <STRING_LITERAL> ...
    "null" ...
    "(" ...
    <IDENTIFIER> ...
    <IDENTIFIER> ...

I am sure I never had that before, the validation seems to fail on parts like that:

<f:facet name="header">                 
<ice:outputText value="ID"></ice:outputText>                                    
</f:facet>
#{bean.id}      <========= THIS LINE IS MARKED AS INVALID
</ice:column>

Why does this happen? What I can do against it? Thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Using EL in template text is only supported in Facelets 2.0 which is part of JSF 2.0. Apparently your dynamic web project is misconfigured as JSF 1.x and Eclipse will then jerk on that.

Change the JSF project facet version to 2.0 in your project's properties.

link|improve this answer
feedback

As I can see, this occurs in Helios when you are using #{} syntax outside a JSF component. Replace # with $, or use outputtext component with #{bean.id}

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.