5

免责声明:我确实详尽地搜索了这个问题的答案,是的,我确实找到了另一个问题:https ://stackoverflow.com/questions/10315728/how-to-send-parameters-as-formparam-to-webservice . 但首先,这个问题是关于 Javascript 的,而我在问的是 Java,其次,它无论如何都没有答案。那么问题来了...

使用 RESTful 服务,将@QueryParams 传递给@GET服务相当容易,因为您可以简单地将变量名称/值对附加到 URL 并使用它从程序中访问服务器。有没有办法用@FormParams 做到这一点?

例如,假设我有以下 RESTful 服务:

@POST
@Produces("application/xml")
@Path("/processInfo")
public String processInfo(@FormParam("userId") String userId,
                          @FormParam("deviceId") String deviceId,
                          @FormParam("comments") String comments) {
    /*
     * Process stuff and return
     */
}

...假设我在程序的其他地方也有另一种方法,如下所示:

public void updateValues(String comments) {

    String userId = getUserId();
    String deviceId = getDeviceId();

    /*
     * Send the information to the /processInfo service
     */

}

如何在第二种方法中执行注释掉的操作?

注意:假设这些方法不在同一个类或包中。还假设 RESTful 服务托管在与您运行方法的机器不同的服务器上。因此,您必须访问该方法并以 RESTful 方式传递值。

感谢您的帮助!

4

1 回答 1

6

使用@FormParam,您可以将表单参数绑定到变量。您可以在此处找到示例。

其次,为了从你的java方法代码内部调用rest服务,你必须使用jersey客户端。示例代码可以在这里找到。

您可以使用 jersey 客户端表单传递表单参数,如下所示。

创建表单

ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
WebResource service = client.resource(UriBuilder.fromUri("http://localhost:8080/api").build());

Form f = new Form();    
f.add("userId", "foo");    
f.add("deviceId", "bar");    
f.add("comments", "Device");  

将其传递给 Restful 方法。

service.path("processInfo").accept(MediaType.APPLICATION_XML).post(String.class,f);

参考

于 2012-09-07T10:20:27.860 回答