I want to concatenate multiple Jackson objects. I have two String object like this
{'Key1' : 'Value1' , 'Key2' : 'Value2'}
and this
{'Key3' : 'Value3' , 'Key4' : 'Value4'}
result must be
{'Key1' : 'Value1' , 'Key2' : 'Value2' , 'Key3' : 'Value3' , 'Key4' : 'Value4'}
How can I do this in Java?