You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jackson saves byte[] in base64 format. According to Stackoverflow this might have been done to save space on disk. But in our case we often want to compare the byte[] in our .json to a byte[] in the debugger. This is e.g. the case if a byte[] parameter has changed so that a Sample is not found anymore.
So we should provide a custom serializer/deserialzer for Jackson that encodes byte[] in a readable form. This serializer/desrialzer should be default.
The text was updated successfully, but these errors were encountered:
Jackson saves byte[] in base64 format. According to Stackoverflow this might have been done to save space on disk. But in our case we often want to compare the byte[] in our .json to a byte[] in the debugger. This is e.g. the case if a byte[] parameter has changed so that a Sample is not found anymore.
So we should provide a custom serializer/deserialzer for Jackson that encodes byte[] in a readable form. This serializer/desrialzer should be default.
The text was updated successfully, but these errors were encountered: