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

时间:2015-08-07 16:06:58

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

想知道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);
然而,考虑到实体&amp;在配置之后,我仍然为版本获取null。 我的申请表有以下内容

@SpringBootApplication
@EnableEntityLinks
@EnableJpaAuditing
public class GabbarSinghApplication

Rest Repository如下

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

虽然我还没有使用标头等测试这些方法,但是http://localhost:8080/workshops上的简单POST请求会给出500,因为从版本值获取ETag标头值时出现空指针异常属性。

更新

为实体移动到@ javax.persistence.Version,我仍然没有在响应头中获得ETag标头。

这是一个失败的单元测试

  @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());

这个断言失败了。

2 个答案:

答案 0 :(得分:12)

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

答案 1 :(得分:0)

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

  1. Spring Data Rest仅在版本2.3.0之后提供对乐观并发控制的ETag支持。见this bug published about a year ago。以前版本的Spring Data Rest不会填充ETag标头。
  2. 对于Spring Boot应用程序(我们的例子),您需要使用Spring Boot 1.3.0.BUILD-SNAPSHOT或更高版本才能设置依赖于Spring Data Rest的spring-boot-starter-data-rest 2.4.1(高于2.3.1,这正是我们所需要的:P)。
  3. 在我的情况下,我使用的是Spring Boot 1.2.7,每当我安装spring-boot-starter-data-rest依赖时,我最终得到了Spring Data Rest 2.2.0,它没有ETag支持。在我的项目中升级Spring Boot并重新安装依赖项后,我的REST API开始检索ETag header = D