Reputation: 41
Due to security vulnerability, Our organization has requested us to not use jackson-databind in our applications and please let me know if there is any other alternative jar we can use instead of jackson-databind.
Upvotes: 4
Views: 4069
Reputation: 31
It depends on the request size, for small JSON files you can use GSON library, for bigger files JSON.simple library has better perfomance. You can find a comparison in here: https://blog.overops.com/the-ultimate-json-library-json-simple-vs-gson-vs-jackson-vs-json/
Upvotes: 2