为什么 属性 版本没有用 Spring Data JPA 设置?

Why is the version property not set with Spring Data JPA?

想知道 Spring Data REST 中的 @Version 注释如何用于 ETag,由于某种原因我没有看到 ETag 填充

@Entity
@EntityListeners(AuditingEntityListener.class)
public class Venue implements Serializable {

  private static final long serialVersionUID = -5516160437873476233L;

  private Long id;

  ...
  // other properties

  private Long version;

  private Date lastModifiedDate;

  // getters & setters

  @JsonIgnore
  @LastModifiedDate
  public Date getLastModifiedDate() {
    return lastModifiedDate;
  }

  @Version
  @Column
  public Long getVersion() {
    return version;
  }

根据文档,这应该给我一个 Etag 值?如图书馆的片段所示

protected HttpHeaders prepareHeaders(PersistentEntity<?, ?> entity, Object value) {

    // Add ETag
    HttpHeaders headers = ETag.from(entity, value).addTo(new HttpHeaders());

    // Add Last-Modified
    AuditableBeanWrapper wrapper = getAuditableBeanWrapper(value);

但是,鉴于实体和以下配置,我仍然得到版本为空。 我的应用程序具有以下

@SpringBootApplication
@EnableEntityLinks
@EnableJpaAuditing
public class GabbarSinghApplication

Rest Repository如下

@RepositoryRestResource(collectionResourceRel = "venue", path = "venues")
public interface VenueRepository extends JpaRepository<Venue, Long> {

虽然我还没有用 headers 等测试这些方法,但是 http://localhost:8080/workshops 上的一个简单的 POST 请求给出了 500 因为 null从版本 属性.

的值获取 ETag header 值时出现指针异常

更新

已将实体移至 @javax.persistence.Version,但我仍然没有在响应 headers.

中获得 ETag header

这是一个失败的单元测试

  @Before
  public void setUp() throws Exception {

    XStream xstream = new XStream();
    ObjectInputStream in = xstream.createObjectInputStream(venuesXml.getInputStream());
    leela = (Venue) in.readObject();
    paul = (Venue) in.readObject();
    taj = (Venue) in.readObject();
    LOGGER.debug("Initialised Venues from xml file {}", venuesXml.getFilename());

  }

  @Test
  public void testEtagHeaderIsAutoGeneratedOnResourceCreation() {

    final HttpEntity<Venue> httpEntity = new HttpEntity<Venue>(taj, headers);

    ResponseEntity<ResourceSupport> response = restTemplate.exchange(BASE_LOCATION
        + VENUES_ENDPOINT, HttpMethod.POST, httpEntity,
        new ParameterizedTypeReference<ResourceSupport>() {
        });

    assertTrue("Response should contain ETag header", null != response.getHeaders().getETag());

此断言失败。

使用Spring数据JPA,需要使用@javax.persistence.Version@org.springframework.data.annotation.Version 是用于其他 Spring 数据模块的注释。

我遇到了同样的问题,几个小时后,我意识到以下事情让我得到启发 =P

  1. Spring Data Rest 仅在2.3.0版本后才提供ETag支持乐观并发控制。参见 this bug published about a year ago。 Spring Data Rest 的早期版本不会填充 ETag header。
  2. 对于 Spring Boot 应用程序(我们的案例),您需要使用 Spring Boot 1.3.0.BUILD-SNAPSHOT 或更高版本才能设置 spring-boot-starter-data-rest 这取决于 Spring Data Rest 2.4.1(高于 2.3.1,这正是我们所需要的 :P)。

在我的例子中,我使用的是 Spring Boot 1.2.7,每当我安装 spring-boot-starter-data-rest 依赖项时,我最终得到的是 Spring Data Rest 2.2.0,它没有有 ETag 支持。升级 Spring 在我的项目中启动并重新安装依赖项后,我的 REST API 开始检索 ETag header =D