我正在从事一个Spring-MVC项目,目前正在为该项目从事时间轴功能。我已经有一个基本的基础结构,但是目前,我正在处理映射,以及如何避免为时间轴功能创建重复项。
情况:
在我们的工具中,有GroupSection与GroupNote进行一对多映射。 GroupNote对象具有带有附件,历史记录的一对多映射。
时间轴功能是什么?
在时间轴功能中,任何用户都可以在任何时间点跳转并检查GroupSection,GroupNotes,附件和历史记录的内容。
我打算如何实现?
我在上述每个对象中都有4个变量来处理此问题。它们是Date SavedDate
,boolean initialNote
,boolean noteModified
和boolean latestNote
。
随之而来的是,每个GroupNote都有一个自联接,将在稍后进行说明。
现在,每次修改Note时,修改标志都设置为true。晚上,我运行一个方法,该方法检查所有修改的对象,并且只有在修改了该对象的情况下,它才会为该对象创建一个重复的实例,将新的Date放入其中,将其标记为最新的Date,并将其持久化。
这样,我可以加载给定日期的所有对象。对于正常的日常使用,将加载所有标记为latest
的笔记。
每当为持久性创建新对象时,它就会通过Cascade.Remove
与旧对象进行自我连接。这样做的作用是,如果用户返回并从2015年删除该对象,则所有后续对象(直到当前)也将被删除。这给人一种像行为的时间。
问题:
现在,如果修改了GroupSection,那么我将通过从修改后的GroupSection复制属性并将其标记为最新,来创建GroupSection的实例并将其持久化。
现在,GroupSection持有的Notes未被修改,但是如果我不创建其重复项,那么前端不会加载任何Notes。但我想避免这种情况。我怎样才能做到这一点?
最终代码:
Group部门模型:
@Entity
@Table(name = "membersection")
public class GroupSection {
@Column(name = "section_save_date", columnDefinition = "date")
private Date secnSavedDate;
@Column(name = "initial_section", columnDefinition = "boolean default true")
private boolean initialSection;
@Column(name = "section_modified", columnDefinition = "boolean default false")
private boolean sectionModified;
@Column(name = "latest_section", columnDefinition = "boolean default false")
private boolean latestSection;
@JsonIgnore
@ManyToOne
@JoinColumn(name = "owned_section_id", nullable = true)
private GroupSection primarySection;
@OneToMany(mappedBy = "primarySection", fetch = FetchType.LAZY, cascade = CascadeType.REMOVE)
private Set<GroupSection> groupSectionSet = new HashSet<>();
@OneToMany(mappedBy = "ownednotes", fetch = FetchType.LAZY, cascade = CascadeType.REMOVE)
@JsonIgnore
private Set<GroupNotes> sectionsnotes = new HashSet<>();
}
GroupNotes模型:
@Entity
@Table(name = "groupnotes")
public class GroupNotes implements Serializable {
@Column(name = "note_save_date", columnDefinition = "date")
private Date noteSavedDate;
@Column(name = "initial_note", columnDefinition = "boolean default true")
private boolean initialNote;
@Column(name = "note_modified", columnDefinition = "boolean default false")
private boolean noteModified;
@Column(name = "latest_note", columnDefinition = "boolean default false")
private boolean latestNote;
@JsonIgnore
@ManyToOne
@JoinColumn(name = "owned_note_id", nullable = true)
private GroupNotes primaryNote;
@OneToMany(mappedBy = "primaryNote", fetch = FetchType.LAZY, cascade = CascadeType.REMOVE)
private Set<GroupNotes> groupNotesSet = new HashSet<>();
}
GroupSectionDAOImpl:
@Override
@Transactional(readOnly = true)
public List<GroupSection> listGroupSectionByCanvasAndDate(int mcanvasid, Date dateToLoad) {
Session session = this.sessionFactory.getCurrentSession();
org.hibernate.Query query = session.createQuery("From GroupSection as msection where " +
"msection.currentcanvas.mcanvasid=:mcanvasid and " +
"msection.secnSavedDate>:dateToLoad " +
" and msection.sectionDisabled=false and msection.latestSection=true and msection.sectionInActive=false order by msection.secnSavedDate asc");
query.setParameter("mcanvasid", mcanvasid);
query.setParameter("dateToLoad",dateToLoad);
return query.list();
}
@Override
public List<GroupSection> listModifiedSectionsForYesterday() {
Session session = this.sessionFactory.getCurrentSession();
Calendar cal = Calendar.getInstance();
Query query = session.createQuery("from GroupSection as gs where gs.sectionModified=true and gs.latestSection=true and gs.secnSavedDate<:loadDate order by gs.secnSavedDate asc");
query.setParameter("loadDate",cal.getTime());
return query.list();
}
上面的DAO方法为我提供了昨天的修改部分或最后修改的部分,以及给定日期的类似部分。我在GroupNotesDAOImpl中有类似的方法
GroupSectionServiceImpl:
@Override
public List<GroupSection> retrieveModifiedSections() {
List<GroupSection> groupSectionList = this.groupSectionDAO.listModifiedSectionsForYesterday();
for (GroupSection yesterdaySection : groupSectionList) {
yesterdaySection.setLatestSection(false);
this.groupSectionDAO.updateGroupSection(yesterdaySection);
GroupSection newDaySection = new GroupSection();
BeanUtils.copyProperties(yesterdaySection, newDaySection);
newDaySection.setInitialSection(false);
newDaySection.setSectionModified(false);
newDaySection.setLatestSection(true);
newDaySection.setMsectionid(0);
newDaySection.setSortedSectionSet(null);
newDaySection.setSecnSavedDate(Calendar.getInstance().getTime());
int sectionSavedId = directAddGroupSection(newDaySection, yesterdaySection.getCurrentCanvasId());
List<GroupNotes> groupNotesList = this.groupNotesService.directListGroupNotesBySectionIdForCanvasCopying(yesterdaySection.getMsectionid());
for(GroupNotes groupNotes : groupNotesList){
Problem --> // No option but to create duplicates.
}
}
return this.groupSectionDAO.listModifiedSectionsForYesterday();
}
我希望这个问题是可以理解的。如有任何疑问,请告诉我。
编辑
我能想到的一种策略是在GroupSection和GroupNotes之间进行多对多映射。不幸的是,已经在GroupSection和GroupNotes之间建立了一对多映射,从而开发了许多后端代码和前端代码。
尽管如此,我确实添加了多对多映射,但是没有加载数据集,它也增加了很多复杂性,这是一个正在进行的问题here。我仍然希望有其他选择。
最佳答案
我不确定如何触发此删除功能。
对我而言,可行的策略是遵循
历史GroupSection(历史链中第一个要删除的)到相关GroupNotes。此关系需要确定每个受影响的组注释
相应的历史实例,并导致该实例的删除。
在处理GroupSection时,您可能需要收集对这些GroupNotes的引用(我认为随着时间的流逝,此集合中会发生变化)
并在最后清理结果集,以免检查GroupNotes异常。