In JPARepository auslagerbar, was zu einem Stackoverflow-Fehler während der Bereitstellung führt, jedoch nicht lokal
Posted: 21 Dec 2024, 09:27
public interface MemberInputRequestRepository extends JpaRepository {
List findByEntityTypeAndBulkEntityTypeOrderByCreatedDateDesc
(DashboardConstant.Entity entityType, DashboardConstant.BulkEntity bulkEntityType, Pageable pageable);
}
Ich benötige eine Paginierung für diese Abfrage. Vor Ort funktioniert es einwandfrei, aber während der Erstellung in der Produktion gibt es ein Problem, warum?
List findByEntityTypeAndBulkEntityTypeOrderByCreatedDateDesc
(DashboardConstant.Entity entityType, DashboardConstant.BulkEntity bulkEntityType, Pageable pageable);
}
Ich benötige eine Paginierung für diese Abfrage. Vor Ort funktioniert es einwandfrei, aber während der Erstellung in der Produktion gibt es ein Problem, warum?