2
I am using Spring Hibernate and am trying to make a native query with Join back to a DTO list. I tried using @Query(value="", nativeQuery=true) with a List but it returns the serialized attributes. I also tried with @Sqlresultsetmapping inside DTO, but I don’t think that would be the most performative way.
I was able to solve using Rowmapper<T>
– FernandoLopes