[SOLVED] Hibernate JPA "findAll()" Returning only One Row (Spring Boot 2.3.7)

Issue I am trying to fetch some data from a table and perform some operations on it. But somehow it just returns one row over and over again. Here’s my Repository class: package com.gtt.wcas.device.db.repository; import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.stereotype.Repository; import com.gtt.wcas.device.db.jpa.DeviceDetails;

Continue reading