如何在 Spring Data Rest 中通过一个 Request 创建多个资源?

How to create multiple resources with one Request in Spring Data Rest?

我需要执行什么才能通过单个 http 请求在我的数据库中创建多个记录?

我有一个使用 SpringDataRest 和 JPA/Hibernate 的小型 Web 应用程序,我可以在其中使用这样的请求创建资源:

curl -XPUT -H"Content-Type: application/json; charset utf-8"\
-d'{"id":"1","type":"test"}'\
http://localhost:8080/test/items/1

相反,我想做类似的事情:

curl -XPUT -H"Content-Type: application/json; charset utf-8"\
-d'[{"id":"1","type":"test1"},{"id":"2","type":"test2"}]'\ 
http://localhost:8080/test/items/

相应的存储库如下所示:

@RestResource(path = "items", rel = "items")
public interface ItemRepository extends PagingAndSortingRepository<Item, String> {
}

使用的 Bean:

@Entity
@XmlRootElement(name = "page")
@Table(name="page")
public class Item {

@Id
@Column(name="id")
private String id;

@Column(name="type")
private String type;

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

/**
 * @return the type
 */
public String getType() {
    return type;
}

/**
 * @param type the type to set
 */
public void setType(String type) {
    this.type = type;
}   
}

你需要一个控制器。

本质上,您想覆盖资源上的 POST 方法以接受项目列表而不是单个项目。

您必须在控制器中获取对存储库的引用并手动插入对象。