0
我有這樣的代碼:如何從JPA Repository中獲取數據與哪裏和?
List<SomeEntity> a = aRepo.findAll();
for(.......) {
tmpData = tmpRepo.findOneByParam1AndParam2And... (param1, param2, ...)
...
}
的問題是,如果我需要重複1000次我會失去很多的時間。我如何獲得我需要的tmpRepo的所有數據?就像:
get all data from tmpRepo where (Param1 = value1 and Param2 = value2 ...) or (Param1 = value11 and Param2 = value12 ...)
也許我可以通過列表作爲參數?