通过REST调用使用外键将项添加到集合中

时间:2016-06-19 00:45:27

标签: java json rest jpa spring-data-jpa

我有2个具有双向关联的jpa实体。

包含项目集合的实体Container(oneToMany) 发布getter / setters

@javax.persistence.Entity
@Table(name = "CONTAINER")
public class Container implements Serializable {
    private static final long serialVersionUID = -3288335692695653843L;

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "ID")
    private Long id;

    @OneToMany(fetch = FetchType.LAZY, mappedBy = "container", cascade = CascadeType.ALL)
    private List<Item> items;

}

实体Item包含对容器(ManyToOne)的引用,具有属性值和日期。 提出二传手/吸气剂

@javax.persistence.Entity
@Table(name = "ITEM")
public class Item implements Serializable {

    private static final long serialVersionUID = -758343957629274274L;

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name = "ID")
    private Long id;

    @Basic
    private Long value;
    @Basic
    private Date date;

    @ManyToOne(fetch = FetchType.EAGER)
    @JoinColumn(name = "CONTAINER_ID")
    private Container container;
}

我也使用spring-data存储库来公开数据。

我的界面存储库只是扩展了CrudRepository<Container, Long>CrudRepository<Item, Long>

@RepositoryRestResource
public interface ItemRepository extends CrudRepository<Item, Long> {
}

@RepositoryRestResource
public interface ContainerRepository extends CrudRepository<Container, Long> {
}

我正在尝试通过REST调用创建项目。

首先我在商品库rest/items

上尝试了这个
POST { "value" : 666, "date" : "2016-01-31T23:00:00.000+0000", "container": {"id":"1"}}

但它只是在容器上创建带有空引用的项目。

当我尝试通过容器存储库添加rest/containers/1/items

POST { "value" : 666, "date" : "2016-01-31T23:00:00.000+0000", "container": {"id":"1"}}

我得到HTTP/1.1 204 No Content<Response body is empty>。没有创建实例。

我的问题是如何通过REST调用添加项目,该调用引用了容器。

编辑:要指定我的问题,我想为现有容器添加新项目。在通过rest(json)

创建Item的实例时,我不确定如何处理外部ID键

2 个答案:

答案 0 :(得分:7)

我通过使用json里面容器的链接解决了这个问题。

POST { "value" : 666, "date" : "2016-01-31T23:00:00.000+0000","container":"http://localhost:8080/container/1"}

我不确定它是否在没有spring-data-rest

的情况下有效

编辑:我应该指出,链接的资源必须是@RepositoryRestResource,并且应该是聚合根

答案 1 :(得分:0)

http响应状态204是No Content。也就是说,您调用的REST方法是void,即使创建了实例,它也不会返回任何内容。

您确定没有创建实例吗?如果不是,请将代码发布到应该创建的位置,这样我们就可以更好地了解实际情况。