У меня есть запрос, который уже написан в репозитории, расширяющем JpaRepository.Но мне нужно добавить логический оператор здесь.
select ac from Accounts ac where ac.userId = :userId and ac.accountId = :accountID
Требование заключается в получении сведений об учетной записи, когда клиент предоставляет идентификатор пользователя или идентификатор учетной записи.
public interface GoalPlanRepository extends JpaRepository<GoalPlan, String>{
@Query("select ac from Accounts ac where ac.userId = :accountID ")
public List<Accounts> getCalculateRecurringAmount(@Param("accountID") String accountID, @Param("userId") String userId);
Это мой репозиторий.Я реализую этот метод в goalPlanDaoImplementation
public List<Accounts> getCalculateRecurringAmount(String accountID) {
// CriteriaBuilder cb = em.getCriteriaBuilder();
// CriteriaQuery<Accounts> cq = cb.createQuery(Accounts.class);
//
// Root<Accounts> acc = cq.from(Accounts.class);
//
// Predicate accountIDPredicate = null;
// Predicate userIdPredicate = null;
//
// if(accountID != null) {
// accountIDPredicate = cb.equal(acc.get("accountID"), accountID);
// }
//
// if(userId != null) {
// userIdPredicate = cb.equal(acc.get("userId"), userId);
// }
//
//
// cq.where(accountIDPredicate, userIdPredicate);
//
// TypedQuery<Accounts> query = em.createQuery(cq);
List<Accounts> goalPlan = null;
goalPlan = goalPlanRepository.getCalculateRecurringAmount(accountID);
return goalPlan;
//return query.getResultList();
}
прокомментированный раздел - это то, что я пытался сделать.Заранее спасибо.:)