I am struggling to deserialize a string into HashMap. My string looks like this:
String str = "{key=qwerty, value=somestring}";
I have tried Jackson to convert it back to HashMap but Jackson works on JSON so it requires me to have double-quotes. Is there a way to do it without converting the string to JSON format?