I want to use spring data repository interface to execute native queries - I think this way is the simplest because of low complexity.
But when extending interface ex. CrudRepository<T, ID>
I need to write T - my entity, which is not available.
My native queries does not return any concrete entity, so what is the best way to create spring repository without entity?
See Question&Answers more detail:os