I used Spring JPA Data + queryDSL.
It's great solution. but I have one question now.
if I want to execute this query.
select sum(point) from users where userLevel = 2;
I have know how execute using queryDSL fro this query. But I don't know how execute this query using queryDSL and QueryDslPredicateExecutor.
How I execute this query using QueryDslPredicateExecutor? Is it imposible now? Either, there is another way to execute this query using Spring JPA another interfaces?