有两张表:
line
news
关系:line代表行,news是行内新闻,也就是一行可以有多条新闻,one to many的关系。
今天进行hibernate映射,进行了配置,出现了点问题,给出相应xml的关键配置,如下:
CmsFocusLine.hbm.xml
-------------------------
<set name="focusNews" inverse="true" lazy="true" cascade="all-delete-orphan" order-by="news_Sort asc" sort="unsorted" mutable="true" optimistic-lock="true" embed-xml="true">
- <key on-delete="noaction"> - <column name="LINE_ID" precision="22" scale="0" not-null="true"> <comment>行id</comment> </column> </key> <one-to-many class="com.huacai.web.entity.cms.CmsFocusNews" not-found="exception" embed-xml="true" /> </set>
---------------------------------
CmsFocusNews.hbm.xml
----------------------------------
<many-to-one name="line" column="LINE_ID" class="com.huacai.web.entity.cms.CmsFocusLine" />
----------------------------------
问题:
不知道为什么,我在查询line的时候,不能延迟加载出news的数据
请大侠指点下!