Spring Boot JPA Native Query Object Mapping – Mysql
I have a Model called CommunityProfile. This model contains two child relationships; player (type User), and rank (type Rank). The default spring boot JPA-generated query is taking approximately 9s to fetch 200 records, which is rather slow. By using the…