Java annotation to transform a json field

683 Views Asked by At

I am trying to come up with an interface that has pretty non-standard way of representing fields as it is fed from a legacy system, this interface seems to require some custom validations + transformations such as

  • Truncating a string value beyond specified length (example : in some cases truncate the string beyond 25th character, in some other cases truncate beyond 15th character)
  • Validate that a string date field is of format YYYMMDD and transforming it to a date field of yyyy-MM-dd format in the setter

How do I come up with custom annotations that can do this using @interface? I was able to find @Constraint(validatedBy=someclass.class) but there doesn't seem to be something to transform the data (or sorry if I haven't looked enough).. Any pointers on this would be helpful.

1

There are 1 best solutions below

0
On

In Java, you just use the "transformed" DataType in your Jackson annotated objects, for example:

 private TransformedData data;

Then you configure Jackson with a deserializer that accepts a String and returns a "TransformedData" object. When Jackson is trying to fill in your data field, it will notice that it needs conversion and call your deserializer.