Replies: 1 comment 5 replies
-
Can u elaborate further? I didnt understand what u need to achieve. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In a case, I had read a string from redis, and then, I will deserialize it to be object, and as a field set into VO. Finally, it will be serialized as json string return to front endpoint. It effect the performance!
In Jackson API, there is a annotation named "JsonRawProperty", it can write string with out quote.
So, I have a object
where is a papa named Bill, and he have a lovely kid named Tobby.
so, Bill's json is
well, well, well.
It's my java code:
So, How can I output that json? No need deserialize.
Beta Was this translation helpful? Give feedback.
All reactions