If I have this code for a rest service in java JAX-RS
@Path("/message")
public class ExampleRestService {
@GET
@Path("/test/")
public Response printeMessage(@PathParam("param") String mvar
){
String resp = "Mensaje restfull de respuesta es : "+ mvar ;
return Response.status(200).entity(resp).build();
}
}
What implications does it have if the PathParam entry is changed to QueryParam, with respect to the generation of the resource url and the parameter step?