Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative for jackson-databind

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.

like image 707
Rocky Avatar asked Oct 20 '25 05:10

Rocky


1 Answers

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/

like image 96
FCF Avatar answered Oct 26 '25 19:10

FCF