ADF中VO的删除操作初探
在ADF的VO中,真实提交更改是在commit 方法执行之后,如以下增加操作
EntityDefImpl departmentEODef = DepartmentEOImpl. getDefinitionObject(); //Create the entiy instance in the current transaction DepartmentEOImpl newDept1 = (DepartmentEOImpl)departmentEODef. createInstance2(this.getDBTransaction(), null);
在此,以下调用
newDept1.getPostState(); //将返回 NEW
newDept1.getEntityState(); //将返回 NEW
在
getDBTransaction().postChanges();
后,
newDept1.getPostState(); //将返回UNMODIFIED
newDept1.getEntityState(); //将返回NEW
在getDBTransaction().commit();操作后,以下操作将都返回UNMODIFIED
newDept1.getPostState();
newDept1.getEntityState();
微信公众号:
Randy的技术笔记
如果您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】
如果您希望与我交流互动,欢迎关注微信公众号
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。