Retrieve JSON Array or JSON Object using JPA Projections & DTO interface – Mysql
I have a DTO interface which fetches data from different tables using joins. I have made a DTO interface with the abstract getter methods something like this. public interface HRJobsDTO { String getEditorName(); String getEditorId(); String getBillingMonth(); Integer getEditorWordCount(); Integer…