1

我在bitcucket中阅读了球衣主页。

但是,我仍然不知道如何在我的应用程序中使用它。

在哪里设置“jersey.path”?jersey.path = /api

我还尝试在“app/rest/resources”文件夹中创建一个资源,如下所示:

@Path("/rest/hello")
public class HelloRessource {
    @GET
    @Produces("application/json")
    public Response helloJson() {
        return Response.ok("Hello").build();
    }

    @GET
    @Produces("application/xml")
    public Response helloXml() {
        return Response.ok("Hello").build();
    }
}

当我访问“localhost:9000/rest/hello”时,出现 404 错误。

谁能告诉我如何在比赛中设置球衣?顺便说一句,我使用 play-1.2.5。非常感谢!

4

0 回答 0