79139569

Date: 2024-10-30 03:17:55
Score: 1.5
Natty:
Report link

It's possible that you have forgot the annotation @Repository in interface PercorsiRepository because this anotation tells Spring that this is a component that should be managed by the Spring container.

@Repository
public interface PercorsiRepository extends ReactiveCrudRepository<Percorsi, Integer> {
    @Query("SELECT * FROM PRC_Percorsi")
    Flux<Percorsi> getRepository();
}
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Repository
  • Low reputation (1):
Posted by: Sergio Tabares