Jersey WebTarget vs HTTPURLConnection

时间:2016-10-04 10:02:24

标签: java jersey-2.0 jersey-client

我正在使用Java学习Web服务。我在技术上是一个菜鸟,这是我编写的代码,它有效,我只是不知道哪种方法比另一种方法有什么优势,比如哪种更安全?哪一个会更快? 我不是要求完整的答案。简洁的一个会做。 我使用Jersey 2.x创建了一个REST服务,并且我创建了客户端以使用所述REST服务。

POST资源如下,

@POST
@Path("postactivity")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public String createActivity(
        @QueryParam("id") int id,
        @QueryParam("description") String description,
        @QueryParam("duration") int duration,
        @QueryParam("name")String name)
{
    //My code that creates Activity object from QueryParams is here.
}   

现在我已经创建了一个Java应用程序的客户端。我通过以下两种方式使用上面的REST服务。

方法1 使用HTTPURLConnection

    private static void doPost(){
    QueryString qs = new QueryString("id", "123"); //QueryString is a class created to build query, not important to the question.
    qs.add("duration", "12");
    qs.add("description", "This is description");
    qs.add("name", "This is Name");
    String url = "http://localhost:8080/webservices/webapi/activities/activity?" + qs;

    URL obj;
    try {
        obj = new URL(url);
        HttpURLConnection con = (HttpURLConnection) obj.openConnection();
        con.setRequestProperty("Content-Type","application/json");
        con.setRequestMethod("POST");
        con.setRequestProperty("User-Agent", "Mozilla 5.0");
        con.setDoOutput(true);


        BufferedReader in = new BufferedReader(
                new InputStreamReader(con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();

        Activity activity = GSON.fromJson(response.toString(), Activity.class); //This is for checking if i'm getting correct data back which I'm sending.


    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
 }

方法2 使用Jersey提供的WebTarget

private static void doPost(){
    Response entity = webTarget
            .path("activities/postactivity")
            .queryParam("id",2204)
            .queryParam("description","Foo")
            .queryParam("duration",100)
            .queryParam("name", "Bar")
            .request()
            .post(null);
    String entityRead = entity.readEntity(String.class);

    System.out.println(entityRead);
    Activity activityRead = GSON.fromJson(entityRead, Activity.class);
    }

感谢。

1 个答案:

答案 0 :(得分:0)

Honestyl我有两件事要写给你: 1. HttpURLConnection是一种Java个人方式来检索网络联盟(如网络服务),但你有一个更好,无压力的方式与泽西岛这样做,这将使你的事情更快,更顺畅。对于某些人,他们甚至说Jersey样式是高级API,而HttpURLConnection则称为低级API。 2.您的问题能够为我提供必要的解决方案,解决过去两天因使用@Queryparam POST webmethod而遇到的问题。我真的很感激。

由于