Add relation to another node in SDN4 + REST

三世轮回 提交于 2019-12-10 13:56:22

问题


I have built a simple SDN4 + REST API:

One endpoint, named player, which contains a set of properties.

Each player has a Set<Player> friends property.

GET, POST, PUT, DELETE and PATCH are working like charm on /player/{id}

The problem here is /player/{id}/friends.

I don't find out how to add a friend to a player, here is what I've tried so far:

  • Before the Test:

curl http://localhost:8080/api/player/1/friends: { }

  • The Test

curl -i -X PATCH -H "Content-Type:application/json" -d '{"id":1, "name":"Player2", "password":"", "email":"player2@game.com", "elo":1200}' http://localhost:8080/api/player/1/friends:

HTTP/1.1 204 No Content Server: Apache-Coyote/1.1 Date: Wed, 04 Nov 2015 13:03:17 GMT

  • After the Test:

curl http://localhost:8080/api/player/1/friends { }

Also tried with PUT, same result.

I tried with POST too, but I get a "method not allowed".

Here is my repository:

@RepositoryRestResource(collectionResourceRel="player", path="player")
public interface PlayerRepository extends PagingAndSortingRepository<Player, Long> {

    Player findByid(@Param("0") long id);
}

And my model:

@NodeEntity
public class Player {

    @GraphId Long id;

    String name;

    String email;

    @Transient
    String password;

    int elo;

    @RelatedTo(type="FRIEND_WITH", direction = Direction.BOTH)
    Set<Player> friends;
}

I feel like it's a simple dumb error, but I don't find how to fix it.

EDIT:

I tried this: $addToSet implementation for array update on PATCH request

And here is the result:

curl -i -X PATCH -H "Content-Type:application/json-patch+json" -d '{"op": "add", "path": "/player/2", "value":["test"]}' http://localhost:8080/api/player/1/friends
HTTP/1.1 415 Unsupported Media Type
Server: Apache-Coyote/1.1
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Date: Thu, 05 Nov 2015 11:40:31 GMT

{
  "timestamp" : "2015-11-05T11:40:31.579+0000",
  "status" : 415,
  "error" : "Unsupported Media Type",
  "exception" : "org.springframework.web.HttpMediaTypeNotSupportedException",
  "message" : "Content type 'application/json-patch+json' not supported",
  "path" : "/api/player/1/friends"
}

Here is my pom.xml, just in case:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.afkgames</groupId>
    <artifactId>api-rest-sdn</artifactId>
    <version>0.1.0</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.2.7.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-rest</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-neo4j</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
        </dependency>
    </dependencies>
    <properties>
        <java.version>1.8</java.version>
        <start-class>api.Bootstrap</start-class>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <repositories>
        <repository>
            <id>spring-releases</id>
            <url>https://repo.spring.io/libs-release</url>
        </repository>
        <repository>
            <id>neo4j</id>
            <name>Neo4j</name>
            <url>http://m2.neo4j.org/</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-releases</id>
            <url>https://repo.spring.io/libs-release</url>
        </pluginRepository>
    </pluginRepositories>

</project>

回答1:


After looking everywhere for a solution, I found it.

You can add an item in a collection using POST with Content-Type : text/uri-list only with spring-starter-parent 1.3.0+.

Here is an example with cUrl:

curl -i -X POST -H 'Content-type: text/uri-list' -d 'localhost:8080/api/player/1' http://localhost:8080/api/player/0/friends

This adds the player 1 as friend of the player 0.



来源:https://stackoverflow.com/questions/33522831/add-relation-to-another-node-in-sdn4-rest

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!