Spring Data Neo4j反应不一致

时间:2015-02-21 11:00:43

标签: spring-data-neo4j spring-data-rest

以下是SDN的正常情况吗?

... / api / friendships / 2返回以下所以我确实与id 2有了友谊:

{
  "_links" : {
    "self" : {
      "href" : "http://localhost:8080/api/friendships/2"
    },
    "requester" : {
      "href" : "http://localhost:8080/api/friendships/2/requester"
    },
    "confirmer" : {
      "href" : "http://localhost:8080/api/friendships/2/confirmer"
    }
  }
}

但是...... / api / friendships返回以下内容,因此它没有显示与id 2的友谊:

{
  "_links" : {
    "self" : {
      "href" : "http://localhost:8080/api/friendships{?page,size,sort}",
      "templated" : true
    }
  },
  "page" : {
    "size" : 20,
    "totalElements" : 0,
    "totalPages" : 0,
    "number" : 0
  }
}

0 个答案:

没有答案