Открих, че не е възможно да добавя нов private final
поле към съществуваща колекция, използвайки само @PersistenceContstructor
анотация. Вместо това трябваше да добавя org.springframework.core.convert.converter.Converter
внедряване, за да се справя с логиката вместо мен.
Ето как в крайна сметка изглежда моят конвертор:
@ReadingConverter
public class SnapshotReadingConverter implements Converter<DBObject, Snapshot> {
@Override
public Snapshot convert(DBObject source) {
long id = (Long) source.get("_id");
String description = (String) source.get("description");
boolean active = (Boolean) source.get("active");
boolean billable = false;
if (source.get("billable") != null) {
billable = (Boolean) source.get("billable");
}
return new Snapshot(id, description, active, billable);
}
}
Надявам се това да помогне на някой друг в бъдеще.