I am facing following problem. I have spent more than 3 days on this but cannot find a solution. Please guide me what I am doing wrong here. I am new to Resteasy with wildfl
I've got same issue (NotFound). After debugging, it turned out that I missed the method. (@GET, @POST...) on the controller
@Path("/create") public Response createObject(){ } //correct @GET // or @POST @Path("/create") public Response createObject(){ }