使用Jersey的REST(Java)(JAX-RS)

时间:2012-06-25 14:10:15

标签: jersey jax-rs

我通过Java(JAX-RS)开发了一个宁静的Web服务:http://www.vogella.com/articles/REST/article.html

然后我使用Hibernate技术将数据映射到数据库。

最后,我开发了一个Android应用程序来显示数据。

这是我的Web服务中的方法示例:

    @GET
    @Path("/project_id/username/get/{projectId}/{username}/")
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON)
    public Response deliverableList(@PathParam("projectId") long projectId,
                            @PathParam("username") String username) {
                Session session = HibernateUtil.getSessionFactory().getCurrentSession();
                session.beginTransaction();
                List<Deliverable> list = null;
                try {
                    list= (List<Deliverable>) session.createQuery(
                            "from Deliverable as d where d.project.id= :id").setLong("id", projectId).list();   
                    } catch (HibernateException e) {
                        e.printStackTrace();
                        session.getTransaction().rollback();
                    }
                    session.getTransaction().commit();
                    return Response.status(201).entity(list).build();
                }

如您所见,我使用“Response.status(201).entity(list).build()”来传输数据列表。这是一个好方法吗?如果不是你的建议转移数据。请使用一些代码和示例来支持您的解释。

2 个答案:

答案 0 :(得分:2)

  1. Response.ok()。enity(object).build()是返回数据的正确方法
  2. 你真的想把你的hibernate东西转移到一个数据访问层......它很难与你的服务层混合管理
  3. 我完全不同意smcg使用帮助器方法将java映射到json。除非您有非常复杂的要求,否则请在您的bean上使用jax-rs注释:请参阅http://wiki.fasterxml.com/JacksonAnnotations

答案 1 :(得分:0)

在我看来,你依靠的东西可以自动将你的Java对象映射到JSON - 可能是杰克逊。我个人不喜欢这种方法。相反,我使用Jettison并创建自己的从Java到Jettison JSONObject对象的映射。然后我使用JSONObject(或JSONArray)作为实体。我的回复陈述是这样的:

return Response.ok().entity(myObjectAsJSON).build();

在返回事物列表的情况下,使用JSONArray而不是JSONObject。

您需要一个帮助方法将Java对象映射到JSON。

public JSONArray deliverableListToJSON(List<Deliverable> deliverables) 
throws JSONException {
JSONArray result = new JSONArray();
for(Deliverable deliverable : deliverables) {
    JSONObject deliverableJSON = new JSONObject();
    deliverableJSON.put("importantValue", deliverable.getImportantValue());
    result.put(deliverableJSON);
    }
return result;
}

此方法为您提供了更大的灵活性,并且不会强迫您为所有字段设置公共getter和setter。