标签: hibernate
我有一个Entity类,其中包含映射到它的Set<Another Entity>,我正在保存它。现在我可以通过entity.getId()获取实体的ID,但我需要获取set<anotherEntity>的ID。 有没有办法在保存后直接获取它们?
Entity
Set<Another Entity>
entity.getId()
set<anotherEntity>
答案 0 :(得分:0)
List<Long> allIds = set.stream().mapToLong(e -> e.getId())怎么样?
List<Long> allIds = set.stream().mapToLong(e -> e.getId())