需要帮助简单的neo4j休息概念证明

时间:2014-12-23 22:07:35

标签: java rest neo4j

我有两个简单的类来测试neo4j服务器上的rest调用。 我已将.jar文件放在plugins目录中,其中包含的路径如下:

gov/lanl/graphing/execute/rest/HelloWorldResource.class

我修改了neo4j-server.properties文件,例如:

org.neo4j.server.thirdparty_jaxrs_class=
     gov.lanl.graphing.execute.rest=/gov/lanl/graphing/execute/rest

我认为我对上述财产缺乏了解。

这是两个类,HelloWorldResrource类是插件目录中的类。注意:有一些熟练的切割器语法,所以忽略奇怪的变量名称等。

这非常简单,我认为问题是我不明白server.properties文件中的路径应该如何在Main类中表示。谢谢你的帮助。

public class Resting {

    public static String URI = "http://localhost:7474/gov/lanl/graphing/execute/rest/helloworld/";
    public static void main (String[] args) {

        Client client = Client.create();
        client.addFilter(new LoggingFilter(System.out));
        WebResource cypher = client.resource(URI + "rico");
        ClientResponse cypherResponse = cypher.accept(MediaType.TEXT_PLAIN).get(ClientResponse.class);
        cypherResponse.close();
        System.out.println(cypherResponse);
    }
}


@Path("/helloworld")
public class HelloWorldResource {

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    @Path("/{name}")
    public Response hello(@PathParam("name") String name)
    {
        return Response.status(Status.OK).entity(
                ("hello there , " + name).getBytes(Charset.forName("UTF-8"))).build();
    }
}

1 个答案:

答案 0 :(得分:1)

好吧,经过多次争论我的j.v.代码,我发现了一些错误。

首先关闭:
    org.neo4j.server.thirdparty_jaxrs_class = 应该:     org.neo4j.server.thirdparty_jaxrs_classes =

其次:

我没有正确配置我的.jar文件,我重新配置了这个编译,以正确地包含类路径和降序目录。问题解决了。对更困难的问题......