You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to run this code and found out that @LastModifiedDate annotation in my MyDocumentType entity is not automatically put into my document. The field is disappeared.
var bulkOps = reactiveMongoTemplate.bulkOps(BulkOperations.BulkMode.UNORDERED, MyDocumentType.class);
var query = new Query(Criteria.where("_id").is(doc.getId()));
var option = new FindAndReplaceOptions().upsert();
bulkOps.replaceOne(query, doc, option);
The text was updated successfully, but these errors were encountered:
I was trying to run this code and found out that @LastModifiedDate annotation in my MyDocumentType entity is not automatically put into my document. The field is disappeared.
The text was updated successfully, but these errors were encountered: