- 浏览: 2686 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
pub10:
问题已解决,都是编程不小心造成的。
protected ...
dbunit 在系统应用(文件导入和导出)中的资源释放问题 -
mcikevin:
<set name="chhilds" ...
hibernate ont-to-many 的问题 get不到值 -
pub10:
[quote="mcikevin]配置文件有问题,应 ...
hibernate ont-to-many 的问题 get不到值 -
mcikevin:
pub10 写道在one-to-many中,数据库里面有对应数 ...
hibernate ont-to-many 的问题 get不到值
文章列表
我在应用中使用dbunit做文件的导入和导出功能,现在导入和导出功能都能很好的实现,但是有一个资源释放的问题,一直都没找着原因,现把代码贴出来,望同志们发表高见。
public abstract class BaseImportor extends AbstractStep implements Importor {
private final static Log log = LogFactory.getLog(BaseImportor.class);
private static final String batchID = "http://www. ...
在one-to-many中,数据库里面有对应数据,为什么parent.getChilds() get不到值
Parent.hbm.xml
<set name="chhilds" inverse="true" lazy="true" cascade="all">
<key column="chi_id"/>
<one-to-many class="Child"/>
</set>
Childs.hbm.xml
& ...