Transient
Ignoring fields in Documents but not in entities.
// Lombok's annotations go here..
public class Customer {
@Id // en2do
UUID uniqueId;
// Other fields go here...
@Transient // en2do - Disable saving to database
String textNotSavedToDatabase;
}Last updated