Zjistil jsem, že není možné přidat nové private final
pole do existující kolekce pouze pomocí @PersistenceContstructor
anotace. Místo toho jsem potřeboval přidat org.springframework.core.convert.converter.Converter
implementace, aby za mě zvládla logiku.
Můj převodník nakonec vypadal takto:
@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);
}
}
Doufám, že to v budoucnu pomůže někomu dalšímu.