如何使用Jersey获取完整的REST请求体?

时间:2009-11-12 20:54:19

标签: java rest jersey

如何使用Jersey获取POST请求的完整HTTP REST请求主体?

在我们的例子中,数据将是XML。大小从1K到1MB不等。

docs似乎表明您应该使用MessageBodyReader,但我看不到任何示例。

5 个答案:

答案 0 :(得分:82)

事实证明,你根本不需要做太多事情。

参见下文 - 参数x将包含完整的HTTP正文(在我们的例子中是XML)。

@POST
public Response go(String x) throws IOException {
    ...
}

答案 1 :(得分:17)

您可以使用@Consumes注释来获取完整的正文:

import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.core.MediaType;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Document;

@Path("doc")
public class BodyResource
{
  @POST
  @Consumes(MediaType.APPLICATION_XML)
  public void post(Document doc) throws TransformerConfigurationException, TransformerException
  {
    Transformer tf = TransformerFactory.newInstance().newTransformer();
    tf.transform(new DOMSource(doc), new StreamResult(System.out));
  }
}

注意:请勿忘记请求的“Content-Type:application / xml”标题。

答案 2 :(得分:12)

使用以下单个代码尝试:

import javax.ws.rs.POST;
import javax.ws.rs.Path;

@Path("/serviceX")
public class MyClassRESTService {

    @POST
    @Path("/doSomething")   
    public void someMethod(String x) {

        System.out.println(x);
                // String x contains the body, you can process
                // it, parse it using JAXB and so on ...

    }
}

试用休息服务的网址结束.... / serviceX / doSomething

答案 3 :(得分:7)

由于你在xml中传输数据,你也可以(联合国)直接从/向pojos编组。

jersey user guide中有一个示例(以及更多信息),我在此处复制:

POJO与JAXB注释:

@XmlRootElement
public class Planet {
    public int id;
    public String name;
    public double radius;
}

<强>资源:

@Path("planet")
public class Resource {

    @GET
    @Produces(MediaType.APPLICATION_XML)
    public Planet getPlanet() {
        Planet p = new Planet();
        p.id = 1;
        p.name = "Earth";
        p.radius = 1.0;

        return p;
    }

    @POST
    @Consumes(MediaType.APPLICATION_XML)
    public void setPlanet(Planet p) {
        System.out.println("setPlanet " + p.name);
    }

}      

生成/消费的xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<planet>
    <id>1</id>
    <name>Earth</name>
    <radius>1.0</radius>
</planet>

答案 4 :(得分:0)

看起来你必须在这里使用MessageBodyReader。这是一个例子,使用jdom:

import org.jdom.Document;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.Provider;
import javax.ws.rs.ext.MediaType;
import javax.ws.rs.ext.MultivaluedMap;
import java.lang.reflect.Type;
import java.lang.annotation.Annotation;
import java.io.InputStream;

@Provider // this annotation is necessary!
@ConsumeMime("application/xml") // this is a hint to the system to only consume xml mime types
public class XMLMessageBodyReader implements MessageBodyReader<Document> {
  private SAXBuilder builder = new SAXBuilder();

  public boolean isReadable(Class type, Type genericType, Annotation[] annotations, MediaType mediaType) {
    // check if we're requesting a jdom Document
    return Document.class.isAssignableFrom(type);
  }

  public Document readFrom(Class type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) {
    try {
      return builder.build(entityStream);
    }
    catch (Exception e) {
      // handle error somehow
    }
  } 
}

将此类添加到您的球衣部署将处理的资源列表中(我认为通常通过web.xml配置)。然后,您可以在常规资源类中使用此阅读器,如下所示:

@Path("/somepath") @POST
public void handleXMLData(Document doc) {
  // do something with the document
}

我还没有证实这与打字完全一样,但这就是它的要点。更多阅读: