想知道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());
这个断言失败了。
答案 0 :(得分:12)
使用Spring Data JPA,您需要使用@javax.persistence.Version
。 @org.springframework.data.annotation.Version
是用于其他Spring Data模块的注释。
答案 1 :(得分:0)
我遇到了同样的问题,经过几个小时和几个小时后,我意识到以下让我受启发的事情= P
在我的情况下,我使用的是Spring Boot 1.2.7,每当我安装spring-boot-starter-data-rest依赖时,我最终得到了Spring Data Rest 2.2.0,它没有ETag支持。在我的项目中升级Spring Boot并重新安装依赖项后,我的REST API开始检索ETag header = D