There seems to be a bug somewhere in JSF when setting the jvm option
-server.
After a while of clicking on a menu (see the following code) only the
first element in the ui:repeat loop will be rendered.
I don't know if trinidad is responsible or facelets or myfaces. I will
need to do some debugging if no one else has experienced this.
The -server option must work because otherwise Hibernate won't (on
Linux).
Code:
<ui:repeat var="menuItem" value="#{groupMenuItem.children}">
<li class="secLevel">
<h:commandLink immediate="true"
id="#{menuItem.id}_treeMenuItem" action="#{menuItem.outcome}">
<h:outputText value="#{menuItem.label}"
styleClass="leftMenuItem" />
<f:param name="newMenuItemId"
value="#{menuItem.id}" />
</h:commandLink>
</li>
</ui:repeat>
Code: