transaction « Exception « JSF Q&A





1. ui:repeat inside a ui:repeat and LazyInitException    stackoverflow.com

I'm currently experiencing a LazyInitException with a page containing code like the following:

<h:form>
<ui:repeat value="#{searchBean.storiesByTag}" var="iStory">
<ui:repeat value="{iStory.tags}"var="iTag">      
<!-- Lazy init exception here -->
#{iTag.content}
</ui:repeat>
</ui:repeat>
</h:form>
storiesByTag() is a bean method ...