如何在JAX-RS方法中获取POST参数?

2022-09-01 14:23:26

我正在与泽西岛一起开发RESTful服务,它与方法配合得很好。但我只能使用该方法获取参数。下面是我项目中的示例代码。GETnullPOST

断续器

<form action="rest/console/sendemail" method="post">
  <input type="text" id="email" name="email">
  <button type="submit">Send</button>
</form> 

爪哇岛

@POST
@Path("/sendemail")
public Response sendEmail(@QueryParam("email") String email) {
    System.out.println(email);
    return  new Response();
}

我从帖子收到的电子邮件始终为空。有人有这个想法吗?

我将QueryParam更改为FormParam,我得到的参数仍然是空的。


答案 1

在通过 提交的表单中,与 中不同POSTemail@QueryParam/sendemail?email=me@example.com

如果您通过 提交 HTML,则为 .formPOSTemail@FormParam

编辑:

这是一个最小的 JAX-RS 资源,可以处理您的 HTML 表单。

package rest;

import javax.ws.rs.FormParam;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

@Path("/console")
public class Console {

    @POST
    @Path("/sendemail")
    @Produces(MediaType.TEXT_PLAIN)
    public Response sendEmail(@FormParam("email") String email) {
        System.out.println(email);
        return Response.ok("email=" + email).build();
    }
}

答案 2

请注意一个小细节 - 您要作为表单的一部分提交的每个输入值都必须具有“name”属性。

<input type="text" id="email" name="email" />