У меня есть следующий тестовый пример, который я хочу опубликовать фрагмент данных JSON, но я получаю 404 сейчас, я делаю что-то здесь не так?
@Test
public void testIndex() {
User user = new User("test@foo.com", "secret", "test", "(111)111-1111");
Gson gson = new Gson();
String postJson = gson.toJson(user);
// post to add the new user
WSRequest postRequest = WS.url("http://localhost:9001/user/add");
postRequest.body = postJson;
HttpResponse postResponse = postRequest.post();
assertEquals(postResponse.getStatus(), (Integer)200);
}