Jeśli chcesz użyć operatora $
w części aktualizacji musisz jawnie napisać that array
w części zapytania. Tak więc
mongoTemplate.updateFirst(
query(where("name").is("Award1")),
Update.update("brand.$.descr", "Desc2"),
Awards.class);
powinno być
mongoTemplate.updateFirst(
query(where("name").is("Award1"))
.and("brand.name").is("Brand1"), // "brand" in "brand.name" is necessary, others according to your requirement
Update.update("brand.$.descr", "Desc2"),
Awards.class);
Jeśli znasz pozycję elementu w tablicy, `$' jest niepotrzebne, możesz spróbować tak:
mongoTemplate.updateFirst(
query(where("name").is("Award1")),
Update.update("brand.0.descr", "Desc2"), // 0 is the index of element in array
Awards.class);
Ten sam sposób obsługi name
pole.