我将 Quarkus 与 hibernate-panache-orm 一起使用。下面是我的示例代码
Optional<OtherObject> opt = object.getList().stream().filter(predicate).findFirst();
if(opt.isPresent()){
OtherObject obj = opt.get()
obj.setVal("SomeVal");
opt.persistAndFlush();
}
如果我将测试类的实际值传递object
给主类,则opt.persistAndFlush()
步骤将失败。否则不了解如何模拟.filter(predicate)
步骤。请帮忙。提前致谢