Spring で REST クライアントから POST JSON に書き込む方法を見つけようとしました。たとえば、次のように書きました。
@RequestMapping(value = "/{userId}/add", method = RequestMethod.POST, headers = {"content-type=application/json"})
@ResponseBody
public Map<String, String> saveUser(@RequestBody User user, BindingResult result) {
Map<String, String> jsonResponse = new HashMap<String, String>();
if (result.hasErrors()) {
jsonResponse.put("Message", "Can't add the user");
jsonResponse.put("Code", "401");
return jsonResponse;
}
userService.addUser(user);
jsonResponse.put("Message", "Success add User");
jsonResponse.put("Code", "200");
return jsonResponse;
}
最後に Firefox REST クライアントからテストしました。しかし、404エラーが表示されました。私は何を間違っていますか?助けてくれてありがとう。