我得到了这个javax.el.E​​LException org.hibernate.LazyInitializationException:无法初始化代理 - 没有Session

时间:2013-06-11 01:48:21

标签: hibernate primefaces

当我想在XHTML页面中打印我的编队对象的其他对象属性的属性时,我得到一个例外,即javax.el.ELException: Error reading 'intitule' on type model.Theme有例外,这是我的代码:

<h:form id="a">
                                <p:growl id="growl" showDetail="true" sticky="false" />
                                <p:dataTable var="formationObject"
                                    value="#{formationBean.listformation}" id="AjoutTab"
                                    widgetVar="FormationTable" emptyMessage="Formation non trouvé"
 rows="15"


                                    style="width:500px;font-size:13px;margin-left: 0px">

                                    <f:facet name="header">
                                        <p:outputPanel>
                                            <h:outputText value="Recherche:" />
                                            <p:inputText id="globalFilter"
                                                onkeyup="FormationTable.filter()"
                                                style="width:80px ;float:center " />
                                        </p:outputPanel>
                                    </f:facet>

                                    <p:column headerText="Intitule " id="formationRef"
                                        filterBy="#{formationObject.planning}" filterMatchMode=""
                                        footerText=" reférence exacte" width="15px">
                                        <h:outputText value="#{formationObject.planning.intitule}" />
                                    </p:column>

                                    <p:column style="width:4%">
                                            <p:commandButton  value="Analyser"
                                                icon="ui-icon-search"
                                                action="#{formationBean.redirectModification()}"            

                                                ajax="false" title="Analyser" />
                                    </p:column>
                                </p:dataTable> 
                            </h:form>

1 个答案:

答案 0 :(得分:1)

LazyInitializationException是一个非常常见的错误,它实际上总是意味着你要么不完全理解hibernate代理,要么不控制应用程序中发生的事情。

当你使用@OneToMany注释时,hibernate通常使用延迟加载。这意味着,在对象中,代替集合,您有代理,而不包含任何元素,并在第一次请求时加载元素(例如get()size())。

但是,如果在Transactional范围之外访问集合,在Web应用程序中通常表示EL方法,则绑定到代理的hibernate会话不再存在。

为防止此类行为,您可以选择以下两种方式:

1)不要使用@OneToMany。相反,如果您想要一个集合,请提供一个DAO方法来加载该集合。

2)确保永远不会从DAO方法返回带有延迟加载代理的对象。您可以遍历集合,将其设置为null,或通过映射器(如Dozer)传递DTO,这将调用所有getter并遍历所有集合,返回没有代理的对象。您也可以在hibernate会话上调用evict(),但是通过迭代或设置null,您可以知道对象是否已加载。