Wanted to know how is @Version annotation in Spring Data REST put to use for ETags, I do not see the ETags populated for some reason
@Version
@Entity @En
With Spring Data JPA, you need to use @javax.persistence.Version. @org.springframework.data.annotation.Version is the annotation to use for other Spring Data modules.
@javax.persistence.Version
@org.springframework.data.annotation.Version