Invalid JSON in Playframework 2.1 Test POST Request
问题 I am trying to test a POST route (on Playframework 2.1/ Java) and keep getting Bad Request - Invalid JSON response. Please let me know what I am doing wrong. My Test code is below. running(fakeApplication(), new Runnable() { public void run() { Map map = new HashMap(); map.put("key1", "val1"); map.put("key2", 2); map.put("key3", true); JsonNode df= Json.toJson(map); Result result = route (fakeRequest(POST, "/item").withHeader("Content-Type", "application/json").withSession(AccountTest.USER