在html上发送application / x-www-form-urlencoded列表

时间:2010-09-13 12:48:50

标签: html list post jersey

我需要向使用Java编写的RESTful服务发送HTTP Post请求并使用Jersey。 我处理请求的java函数是这样的:

@POST
@Consumes("application/x-www-form-urlencoded")
public Response update(@FormParam("items") List<String> items) {

 ...

}

如何在html上创建请求并发送它,以便它们作为String对象列表传递给我的函数?

0 个答案:

没有答案