将JSON传递给WebService

时间:2014-05-13 21:48:13

标签: java json web-services dropwizard

我使用dropwizard框架在java中开发了一个web服务。我希望它消耗一个json。

我的服务代码是 -

- 资源类

@Path(value = "/product")
  public class ProductResource{ 

   @POST
   @Path(value = "/getProduct")
   @Consumes(MediaType.APPLICATION_JSON)
   @Produces(MediaType.APPLICATION_JSON)
   public Product getProduct(InputBean bean) {
    // Just trying to print the parameters. 
    System.out.println(bean.getProductId());
    return new Product(1, "Product1-UpdatedValue", 1, 1, 1);
   }
} 

- InputBean是一个简单的bean类。

public class InputBean {

    private int productId;
    private String productName;

    public String getProductName() {
        return productName;
    }
    public void setProductName(String productName) {
        this.productName= productName;
    }

    public int getProductId() {
        return productId;
    }
    public void setProductId(int productId) {
        this.productId= productId;
        }
}

客户代码 -

    public String getProduct() {

            Client client = Client.create();
            WebResource webResource = client.resource("http://localhost:8080/product/getProduct");
JSONObject data = new JSONObject ("{\"productId\": 1, \"productName\": \"Product1\"}");
            ClientResponse response = webResource.type(MediaType.APPLICATION_JSON)
                    .accept(MediaType.APPLICATION_JSON)
                    .post(ClientResponse.class, data);
            return response.getEntity(String.class);
        }

我收到了错误 -

ClientHandlerException

这段代码有什么问题吗?

JSONObject data = new JSONObject ("{\"productId\": 1, \"productName\": \"Product1\"}");
ClientResponse response =  webResource.type(MediaType.APPLICATION_JSON)
                        .accept(MediaType.APPLICATION_JSON)
                        .post(ClientResponse.class, data);

有人可以指出我可能遗失的内容吗?

客户日志 -

enter image description here

2 个答案:

答案 0 :(得分:0)

您正确设置了类型并正确发出请求。

问题是你无法处理响应。

A message body reader for Java class my.class.path.InputBean

...基本上是在说,你正在返回一些无法读取,格式化和输入任何有用内容的东西。

您在服务中返回了一个产品类型,这是您的八位字节流,但是我没有看到您将MessageBodyWriter输出到JSON的位置。

你需要:

 @Provider
@Produces( { MediaType.APPLICATION_JSON } )
public static class ProductWriter implements MessageBodyWriter<Product>
{
    @Override
    public long getSize(Product data, Class<?> type, Type genericType, Annotation annotations[], MediaType mediaType)
    {
        // cannot predetermine this so return -1
        return -1;
    }

    @Override
    public boolean isWriteable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType)
    {
        if ( mediaType.equals(MediaType.APPLICATION_JSON_TYPE) )
        {
            return Product.class.isAssignableFrom(type);
        }

        return false;
    }

    @Override
    public void writeTo(Product data, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType,
                        MultivaluedMap<String, Object> headers, OutputStream out) throws IOException, WebApplicationException
    {
        if ( mediaType.equals(MediaType.APPLICATION_JSON_TYPE) )
        {
            outputToJSON( data, out );
        }
    }
    private void outputToJSON(Product data, OutputStream out) throws IOException
    {
        try (Writer w = new OutputStreamWriter(out, "UTF-8"))
        {
            gson.toJson( data, w );
        }
    }
}

答案 1 :(得分:0)

似乎JSONObject无法序列化,因为找不到消息编写器。为什么不直接将InputBean作为输入?

将您的客户代码更改为:

CAfails<-data.frame(x=c(2.5,5.8,10.7,16.2,23,36.2,45.3,49.5,70.1,80.3,83.6,90))

LOG.as<-c(t((10^((floor(log10(min(CAfails)))-1):ceiling(log10(max(CAfails)))))%o%c(1:10)))
LOG.as<-LOG.as[-10*((floor(log10(min(CAfails))):ceiling(log10(max(CAfails))))+1)]

pdf$x <- 1:nrow(CAfails)
pdf$y <- CAfails$x

ggplot(data=pdf,aes(x,y)) + geom_point() +
scale_x_log10(limits=c(1,10^(ceiling(log10(max(CAfails))))),breaks=LOG.as) +
scale_y_log10(limits=c(0.1,10^(ceiling(log10(max(CAfails))))),breaks=LOG.as)