Skip to content
Advertisement

Jackson encode all properties to base64

I have more than one class that I want to serialize using Jackson to generate Json, for example

JavaScript

I need to encode all value of the json to base64, so I configure the object mapper like this

JavaScript

The problem is it’s only encode the String type as the serializer only accept one type, is there any method to encode all field values, (long, int, object, etc..) I mean to encode all value of the json field regarding it type of string or int??

Advertisement

Answer

You could use following:

Serializer

JavaScript

Registration and test:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement