简体   繁体   English

带有asynchttpclient的JSON帖子

[英]JSON post with asynchttpclient

I'm trying to do a POST request on a REST service with async support (provided by atmosphere). 我正在尝试在具有异步支持(由大气层提供)的REST服务上执行POST请求。 Here's what my service looks like: 这是我的服务:

package co.damt.services;


import javax.ws.rs.Consumes;
import javax.ws.rs.Path;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Produces;

import org.atmosphere.annotation.Broadcast;
import org.atmosphere.annotation.Suspend;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * REST Web Service
 *
 * @author damt
 */
@Path("/")
public class GenericResource {

    private final Logger logger = LoggerFactory.getLogger(GenericResource.class);

    @Suspend(contentType = "application/json")
    @GET
    public String suspend() 
    {
        return "";
    }

    @Broadcast(writeEntity = false)
    @POST
    @Produces("application/json")
    public Message broadcast(Message message) 
    {
        logger.info(message.getAuthor()+"@"+message.getTime()+": "+message.getMessage());
        return message;
    }

}

I'm trying to do a POST request using asyncHttpClient and I get a status of 200, but no log from the service that the message was received: 我正在尝试使用asyncHttpClient发出POST请求,但状态为200,但没有从服务接收到该消息的日志:

private final static ObjectMapper mapper = new ObjectMapper();
private static Request request;

public static void main( String[] args )
{

    AsyncHttpClient asyncHttpClient = new AsyncHttpClient();

    String jsonContent="";
    try {
        jsonContent = mapper.writeValueAsString(new Message("diego", "Hello World"));
        System.out.println(jsonContent);
    } catch (IOException ex) {
        Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }

    request = asyncHttpClient.preparePost("http://localhost:8080/Test/").
            setHeader("Content-Type","application/json").
            setHeader("Content-Length", ""+jsonContent.length()).
            setBody(jsonContent).
            build();

    ListenableFuture<Integer> f= null;
    try {
        f = asyncHttpClient.executeRequest(request,
                new AsyncCompletionHandler<Integer>(){

                    @Override
                    public Integer onCompleted(Response response) throws Exception{
                        // Do something with the Response
                        System.out.println(response.getStatusCode());
                        return response.getStatusCode();
                    }

                    @Override
                    public void onThrowable(Throwable t){
                        // Something wrong happened.
                    }
                });

    } catch (IOException ex) {
        Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }

    int statusCode;

    if (f!=null)
    {
        try {
            statusCode = f.get();
        } catch (InterruptedException ex) {
            Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
        } catch (ExecutionException ex) {
            Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
        }
    }

    asyncHttpClient.close();

When I use Apache HttpClient the service logs that the message was received and get a 200 status code: 当我使用Apache HttpClient时,该服务记录该消息已收到并获得200状态代码:

    @SuppressWarnings("deprecation")
    final HttpClient httpClient = new DefaultHttpClient();

    @SuppressWarnings("deprecation")
    StringEntity requestEntity= null;
    try {
        requestEntity = new StringEntity(
            mapper.writeValueAsString(new Message("diego", "Hello World!")),
            ContentType.APPLICATION_JSON);
    } catch (UnsupportedEncodingException ex) {
        Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    } catch(IOException ex) {
        Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }

    HttpPost postMethod = new HttpPost("http://localhost:8080/Test/chat/");
    postMethod.setEntity(requestEntity);

    HttpResponse statusCode= null;
    try {
        statusCode = httpClient.execute(postMethod);
    } catch (IOException ex) {
        Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }

    postMethod.releaseConnection();

    if (statusCode != null)
    {
        System.out.println(statusCode.toString());
    }

Why is asyncHttpClient not working? 为什么asyncHttpClient不起作用?

测试有缺陷:HttpCompenents测试命中localhost:8080/Test/chat而AsyncHttpClient一个命中localhost:8080/Test

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM