org.springframework.data.repository.history.RevisionRepository
Entity entity = repository.findLastChangeRevision(entity.getId()).get().getEntity();
返回列表为 ListProxy 的实体。
正常的 CrudRepository
repository.findById(id)
返回具有相同内容的相同实体,但列表类型为 PersistentBag。
在集成测试中断言这两个对象的这种差异案例问题。
有什么解决办法吗?