javax.json.JSONObject.put(String,String) not working anymore
The solution presented in Convert a string list/set to json objects in java seems not to work any more. In version 1.1.4 of the javax.json JSONObject is now a subclass of the typed Map<String, JsonValue> . Hence jsonObject.put("key", "value") leads…