just moved an app from 1.0.9 to 1.1.1 . I get one of these
even though there is no JSTL in the whole app:
java.lang.NoClassDefFoundError:javax/servlet/jsp/jstl/sql/Resu
lt
Not a show stopper. Putting the jstl.jar in the classpath
solves this (the one received from ibiblio when running the
download-deps ant task) .
However I still get this:
javax.faces.el.PropertyNotFoundException: Bean:
org.hibernate.collection.PersistentSet, property: gameId
... using the following in the JSP:
<h:dataTable styleClass="dataTable" var="item"
value="#{TeamCrud.unit.gamesForAwayTeamId}" >
<h:column>
<h:commandLink immediate="true"
value="Game #{item.gameId}"
action="#{GameCrud.retrieve}" >
<t:updateActionListener
property="#{GameCrud.id}"
value="#{item.gameId}" />
</h:commandLink>
</h:column>
</h:dataTable>
Note that the EL does not reference "gameId" of the Set, but
rather "gameId" of an item in the Set.
Furthermore, the PropertyNotFoundException will go away if I
change h:dataTable to t:dataTable .
Have either of these issues been addressed already?
Dennis Byrne