martes, 18 de septiembre de 2018

@DELETE The requested resource is not available.

 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


   
ya lo resolvi faltaba esto en el METODO:  el id @Path("/eliminarPersona/{id}")

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: