I'm learning spring and I'm doing a basic project that consults a table and shows the rows through a service.
At the time of building the project I have the following error:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'personaService' defined in file [D:\Daniel\Proyecto-Catalogo\backend\cyberbuzon\target\classes\com\verasoftec\cyberbuzon\negocio\services\PersonaService.class]: Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'personaRepository': Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Failed to create query for method public abstract com.verasoftec.cyberbuzon.modelo.Persona com.verasoftec.cyberbuzon.negocio.repository.PersonaRepository.edit(com.verasoftec.cyberbuzon.modelo.Persona)! No property edit found for type Persona!
at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:769) ~[spring-beans-5.1.9.RELEASE.jar:5.1.9.RELEASE]
at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:218) ~[spring-beans-5.1.9.RELEASE.jar:5.1.9.RELEASE]
I don't understand what I'm doing wrong.