I used to have named query methods in Repository interface without an implementation (like findByMember(Member m)). Or interface methods with @Query annotation, again without implementation.
In Appfuse, Repository interfaces have implementation (like RoleDaoHimernate), so I have to write implementations.
Could you tell me way to avoid making implementations and to write only named queries and annotated queries?