Cuando pruebo el metodo DELETE del restful ws me sale este error, y deberia salir un valor 200 OK,
HTTP Status 404 - Not Found
type Status report
messageNot Found
descriptionThe requested resource is not available.
GlassFish Server Open Source Edition 5.0
Completo seria
@DELETE
@Path("/eliminarPersona/{id}")
public void eliminaPersonaDTO(@PathParam("id") Long id){
System.out.println("LLEGA AL MÉTODO eliminarPersona");
personaLogica.eliminar(id);
}
No hay comentarios:
Publicar un comentario