The value of attribute "value" associated with an element type "null" must not contain the '
Fehler:
javax.faces.FacesException: Can't parse stream for /test.jspx The value of attribute "value" associated with an element type "null" must not contain the '<' character.
Lösung:
Dieser Fehler bei JSF / IceFaces ist oft ein Hinweis auf ein fehlendes Anführungszeichen im value-Atttribut.
Hier ein Beispiel:
<ice:outputLabel value="Hallo Welt/>
Das schließende Anführungszeichen fehlt, wie Sie sehen können. Dadurch wurde bei mir der Fehler verursacht.
javax.faces.FacesException: Can't parse stream for /test.jspx The value of attribute "value" associated with an element type "null" must not contain the '<' character.
Lösung:
Dieser Fehler bei JSF / IceFaces ist oft ein Hinweis auf ein fehlendes Anführungszeichen im value-Atttribut.
Hier ein Beispiel:
<ice:outputLabel value="Hallo Welt/>
Das schließende Anführungszeichen fehlt, wie Sie sehen können. Dadurch wurde bei mir der Fehler verursacht.
Werbung