JPOS Restful API发送和接收数据

时间:2019-05-26 07:51:01

标签: java api restful-url jpos

我从jpos-rest.pdf在JPOS中配置RESTFul API。
问题是我无法从客户端接收数据,但可以将数据发送到客户端。
Echo.java类中,通过以下代码,我可以发送数据:

package org.jpos.rest;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.util.HashMap;
import java.util.Map;

@Path("/echo")
public class Echo {
    @GET
    @Produces({MediaType.APPLICATION_JSON})
    public Response echoGet() {
        Map<String, Object> resp = new HashMap<>();
        resp.put("success", "true");
        resp.put("Name", "Hamid");
        resp.put("Family", "Mohammadi");
        Response.ResponseBuilder rb = Response.ok(resp, MediaType.APPLICATION_JSON).status(Response.Status.OK);
        return rb.build();
    }
}

Data received from jpos
如何从客户端接收数据?没有请求参数可以找到什么是请求及其数据;

1 个答案:

答案 0 :(得分:1)

感谢@Sabir Khan 我将代码更改为:

    @Path("/echo")
    public class Echo {
        @PUT
        @Produces({MediaType.APPLICATION_JSON})
        @Consumes(MediaType.TEXT_PLAIN)
        @Path("/{name}/{family}")
        public Response echoGet(
                @PathParam("name") String name,
                @PathParam("family") String family,
                String Desc
        ) {
            Map<String, Object> resp = new HashMap<>();
            resp.put("success", "true");
            resp.put("Name", name);
            resp.put("Family", family);
            resp.put("Desc", Desc);
            Response.ResponseBuilder rb = Response.ok(resp,
MediaType.APPLICATION_JSON).status(Response.Status.OK);
            return rb.build();
        }
    }

,然后将数据发送到RESTFul API,如下所示: This