TransformField
Renaming fields in Documents.
// Lombok's annotations go here..
public class Customer {
@Id // en2do
UUID uniqueId;
// Other fields go here...
@TransformField("otherField") // en2do - Change field name to "otherField"
String reallyLongFieldName;
}Last updated