база данных Firebase
мой код:
Код: Выделить всё
@GetMapping(value = "/login")
public String getName(@PathVariable String name) throws Exception {
String name = "";
List
list1 = personaServiceAPI.getAll();
for(int i=0; i < list1.size(); i++){
if(list1.get(i).getNombre().equals(nombre)){
name = nombre;
break;
}
}
return name;
}
Код: Выделить всё
"org.springframework.web.bind.MissingPathVariableException: Required URI template variable 'nombre' for method parameter type String is not presentПодробнее здесь: https://stackoverflow.com/questions/760 ... ing-spring