如何在Java Response对象中返回JsonArray

时间:2015-08-15 17:42:36

标签: java json web-services

我正在尝试实现基于java的Web服务服务器,该服务器返回到基于Json和java脚本的Web服务客户端。这是我的java部分:

@Path("/myapp")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public class MyRecommender {
            @POST
            @Path("/recs")
            public Response getRecommendations() {
                //Assume recommendation List contains some Recommendation objects 
                //I removed it for simplicity.            
                List<Recommendation> recommendation;
                JsonArrayBuilder builder = Json.createArrayBuilder();
                for (Recommendation rec : recommendations) {
                    builder.add(Json.createObjectBuilder().add("firstPersonName", "\"" + rec.getFirstPerson().getName() + "\"")
                            .add("firsPersonURL", "\"" + rec.getFirstPerson().getURL() + "\"")
                            .add("secondPersonName", "\"" + rec.getSecondPerson().getName() + "\"")
                            .add("secondPersonURL", "\"" + rec.getSecondPerson().getURL() + "\"")
                            .add("score", "\"" + rec.getSimilarity() + "\""));
                }
                JsonArray jsonData = builder.build();
                return Response.ok(jsonData, MediaType.APPLICATION_JSON).header("Access-Control-Allow-Origin", "*")
                        .header("Access-Control-Allow-Methods", "POST").allow("OPTIONS").build();
            }
        }
}

现在,当我从我的js客户端调用此函数时,我得到了:

POST http://localhost:8080/myapp/recs 500 (Request failed.)

但是当我替换for循环并返回以下代码时,我在js中得到了正确的响应。

更改了部分:

// remove for loop and change jsonData type.
  String jsonData = "{\"name\":\"John\"}";
  return Response.ok(jsonData, MediaType.APPLICATION_JSON).header("Access-Control-Allow-Origin", "*")
          .header("Access-Control-Allow-Methods", "POST").allow("OPTIONS").build();

所以,我想知道可能会出现什么问题?自从我第一次使用Web服务以来,我在调试代码时遇到了一些困难。

修改

顺便说一句,当我尝试第一个版本的getRecommendations()函数(带循环)时,我也遇到了另一个错误

     XMLHttpRequest cannot load http://localhost:8080/myapp/recs. 
     No 'Access-Control-Allow-Origin' header is present on the requested resource.   
    Origin 'http://localhost:3000' is therefore not allowed access. 
The response had HTTP status code 500.

但正如我所说,当我删除循环并将第二个代码剪切到getRecommendations()函数中时,两个错误都消失了,我在我的网站上得到了响应。

EDIT2

当我更改循环并返回getRecommendations()函数的语句时,我再次获取相同的错误

 JsonObject value = Json.createObjectBuilder()
                .add("name", "John").build();
return Response.ok(value, MediaType.APPLICATION_JSON).header("Access-Control-Allow-Origin", "*")
              .header("Access-Control-Allow-Methods", "POST").allow("OPTIONS").build();

编辑3

据我所知,createObjectBuilder().build()JsonArrayBuilder.build()在我的getRecommendations()函数中返回JSON object及以下的构建语句甚至都没有运行。所以,我认为我的问题是如何为这个对象提供Access-Control-Allow-Origin权限?

1 个答案:

答案 0 :(得分:2)

如果可以使用第三方库,在这种情况下使用Google的Gson可能是一种有效的解决方案。将模型转换为JSON时非常方便。 你能做的就是这样。

ArrayList<Recommendation> recommendationList = new ArrayList<Recommendation>();
Gson gson = new Gson(); String jsonData = gson.toJson(reccomendationList);

要将它用作POM文件中的依赖项,您可以执行此操作。

<dependency>
  <groupId>com.google.code.gson</groupId>
  <artifactId>gson</artifactId>
  <version>2.3.1</version>
  <scope>compile</scope>
</dependency>