In the repository interface if try removing the type from the interface , it will fix your issue:
// | No type information needed here!
interface ConfigParamsRepository extends CrudRepository<ConfigParamsJpa, String> {
}
CLICK HERE to find out more related problems solutions.