javax.ws.rs.NotFoundException: Could not find resource for full path with RESTEasy and Wildfly 8.1.0.Final

前端 未结 7 2169
长情又很酷
长情又很酷 2020-12-06 01:59

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

7条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-06 02:34

    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(){
    }
    

提交回复
热议问题