You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@RepositorypublicinterfaceFooRepositoryextendsJdbcRepository {
@Query(""" SELECT name FROM foo WHERE id = :id """)
FoofindById(Integerid);
}
But this:
@RepositorypublicabstractclassFooRepositoryimplementsJdbcRepository {
@Query(""" SELECT name FROM foo WHERE id = :id """)
publicabstractFoofindById(Integerid);
}
causes the error:
Required dependency was not found and candidate class com.example.FooRepository is not final
The text was updated successfully, but these errors were encountered:
This works:
But this:
causes the error:
The text was updated successfully, but these errors were encountered: