我有一个页面,其中包含在页面显示时动态加载的Hibernate实体列表。该列表用于创建DataView,该DataView用于显示容器中列表中条目的分页列表。列表中的每个条目都有一个删除图标。当按下删除图标时,我懒惰删除该条目,用实体重新加载列表(将不再包含延迟删除的条目),并重新加载容器,但该条目仍然在容器中,直到我重新加载整个页面。为什么呢?
public class LogPage extends ProjectPage{
@SpringBean
private LogDao logDao;
@SpringBean
private LogEntryDao logEntryDao;
private List<LogEntry> logEntryList;
private DataView<LogEntry> dataView;
private WebMarkupContainer logEntryListContainer;
public LogPage(PageParameters pp) {
super(pp);
Project activeProject = SciProSession.get().getActiveProject();
Log log = null;
if (activeProject.getLog()==null){
log = new Log(activeProject);
log = logDao.save(log);
}else{
log = activeProject.getLog();
}
logEntryList = logEntryDao.findAll();
Collections.sort(logEntryList);
logEntryListContainer = new WebMarkupContainer("logEntryListContainer");
logEntryListContainer.setOutputMarkupId(true);
dataView = (DataView<LogEntry>) new DataView<LogEntry>("logEntryDataView", new ListDataProvider(logEntryList)) {
private static final long serialVersionUID = 1L;
@Override
protected void populateItem(final Item<LogEntry> item) {
final LogEntry logEntry = item.getModelObject();
item.add(new Label("contents", logEntry.getContents()));
item.add(new Label("creator", logEntry.getCreator().toString()));
AjaxActionIcon deleteIcon = new AjaxActionIcon("deleteIcon", ImageIcon.ICON_DELETE){
private static final long serialVersionUID = 1L;
@Override
protected void onClick(AjaxRequestTarget target) {
LogEntry toBeRemoved = logEntryDao.reLoad(logEntry);
toBeRemoved.setDeleted(true);
logEntryDao.save(toBeRemoved);
logEntryList = logEntryDao.findAll();
target.addComponent(logEntryListContainer);
}
};
item.add(deleteIcon);
}
};
dataView.setItemsPerPage(10);
logEntryListContainer.add(dataView);
logEntryListContainer.add(new PagingNavigator("navigator", dataView));
add(logEntryListContainer);
}
}
答案 0 :(得分:4)
您正在更改变量logEntryList指向的内容,但这不会影响新的ListDataProvider(logEntryList)所看到的内容。
重新加载后,您可以做的是
答案 1 :(得分:1)
在创建DataView时传入logEntries列表。之后对列表的任何更改都不会反映出来。尝试将列表包装在PropertyModel中并为其提供一个getter。