बस बस @Version
जोड़ें आपको फ़ील्ड @Document
कक्षा और छोड़ दें @EnableMongoAuditing
यानी
@Document
public class Profile implements Persistable<String>{
@Version
private Long version;
@Id
private String username;
@CreatedDate
public Date createdDate;
public Profile(String username) {
this.username = username;
}
@Override
public String getId() {
return username;
}
@Override
public boolean isNew() {
return username == null;
}
}
यहाँ एक संबंधित समस्या है:https://jira.spring.io/browse/DATAMONGO-946