Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DATACMNS-939 - Do not create queries for static interface methods.
We now no longer attempt query creation for static methods declared on a repository interface. This allows static method usage inside of repository interfaces. interface PersonRepository extends CrudRepository<Person, String> { static String createId() { // … } default Person findPerson() { return findOne(createId()); } }
- Loading branch information