本文介绍了@Consumes(MediaType.APPLICATION_FORM_URLENCODED)FormParameter为null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个泽西岛网络服务,如下所示:

I've created a Jersey webservice that looks like this:

@Path("/webhookservice")
public class Webhook {

    @POST
    @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
    public Response readData(@FormParam("payload") Payload payload, @Context HttpServletRequest req) {

        // Gets client IP address
        String ipAddress = (req.getRemoteHost().equals("") || req.getRemoteHost() == null) ? "UNKNOWN" : req.getRemoteHost();

        // Persist data to DB
        Persist.saveToDb(payload.getId(), Integer.toString(payload.getTimestamp()),
                payload.getStatus(), payload.getAuth_code(),
                payload.getTotal_amount(), payload.getRequired_amount(),
                ipAddress);

        // Repsond with a HTTP 200 OK
        Response response = Response.status(200).build();
        return response;

    }

    @GET
    @Produces("text/plain")
    public String testService() {
        return "Service is up and working!";
    }

}

Payload类如下所示:

The Payload class looks like this:

@XmlRootElement
public class Payload {

    private String id;
    private int timestamp;    
    private String status;    
    private String auth_code;    
    private int total_amount;    
    private int required_amount;

    // Getters
    @XmlElement(name = "id")
    public String getId() {
        return this.id;
    }

    @XmlElement(name = "timestamp")
    public int getTimestamp() {
        return this.timestamp;
    }

    @XmlElement(name = "status")
    public String getStatus() {
        return this.status;
    }

    @XmlElement(name = "auth_code")
    public String getAuth_code() {
        return this.auth_code;
    }

    @XmlElement(name = "total_amount")
    public int getTotal_amount() {
        return this.total_amount;
    }

    @XmlElement(name = "required_amount")
    public int getRequired_amount() {
        return this.required_amount;
    }

    // Setters
    public void setId(String id) {
        this.id = id;
    }

    public void setTimestamp(int timestamp) {
        this.timestamp = timestamp;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public void setAuth_code(String auth_code) {
        this.auth_code = auth_code;
    }

    public void setTotal_amount(int total_amount) {
        this.total_amount = total_amount;
    }

    public void setRequired_amount(int required_amount) {
        this.required_amount = required_amount;
    }

}

请求我是发送如下所示:

And the request that I'm sending looks like this:

未编码正文:

payload={"id":"123123","auth_code":"191331","required_amount":101,"timestamp":1407775713,"status":"completed","total_amount":101}

编码正文:

payload%3D%7B%22id%22%3A%22123123%22%2C%22auth_code%22%3A%22191331%22%2C%22required_amount%22%3A101%2C%22timestamp%22%3A1407775713%2C%22status%22%3A%22completed%22%2C%22total_amount%22%3A101%7D

但是当我发送请求时,有效载荷对象在'Webhook'类中的'readData()'函数中为空...有人能指出我正确的方向吗?

But when I send the request off the 'payload' object is null in my 'readData()' function in the 'Webhook' class... Can anybody point me in the right direction?

推荐答案

尝试使用 @Consumes(MediaType.APPLICATION_XML)(在发送请求时也设置它)然后删除 @FormParam(payload)注释。在客户端发送有效负载时,请确保它是XML编码的(没有 payload = )。

Try using a @Consumes(MediaType.APPLICATION_XML) (also set it when you send the request) and then remove the @FormParam("payload") annotation. When you send the payload in your client, make sure it is XML encoded (without payload=).

否则,如果您想坚持使用模式(将MediaType.APPLICATION_FORM_URLENCODED与XML混合),则必须手动解码编码的XML字符串。
我的意思是:

Otherwise, if you want to stick with your schema (mixing MediaType.APPLICATION_FORM_URLENCODED with XML) you will have to decode manually the encoded XML String.What I mean is the following:

@Path("/webhookservice")
public class Webhook {

    @POST
    @Consumes(MediaType.APPLICATION_FORM_URLENCODED)
    public Response readData(@FormParam("payload") String payload, @Context HttpServletRequest req) {
        JAXBContext jaxbContext = JAXBContext.newInstance(Payload.class);
        Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();

        StringReader reader = new StringReader(payload,);
        Payload payload = (Payload) unmarshaller.unmarshal(reader);

        //...
    }
}

为什么必须使用String而不是Payload参数?因为没有人告诉Jersey / JAX-RS如何解码该字符串:它可能是JSON字符串或XML字符串。

Why you must work with a String instead of a Payload parameter? Because noone tells Jersey/JAX-RS how to decode that String: it may be a JSON String, or an XML String.

这篇关于@Consumes(MediaType.APPLICATION_FORM_URLENCODED)FormParameter为null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-25 07:08