MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Spring Data MongoDB - L'annotation @CreatedDate ne fonctionne pas lors de l'utilisation avec un champ d'identification personnalisé

ajoutez simplement @Version champ pour vous @Document classez et laissez @EnableMongoAuditing c'est-à-dire

@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;
     }
 }

Voici un problème connexe :https://jira.spring.io/browse/DATAMONGO-946