Odkryłem, że nie można dodać nowego private final
pole do istniejącej kolekcji przy użyciu tylko @PersistenceContstructor
adnotacja. Zamiast tego musiałem dodać org.springframework.core.convert.converter.Converter
implementacja do obsługi logiki za mnie.
Oto, jak wyglądał mój konwerter:
@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);
}
}
Mam nadzieję, że w przyszłości pomoże to komuś innemu.