无法使用邮递员发送帖子请求

时间:2018-06-05 18:27:01

标签: http post httpclient postman spring-restcontroller


我正在尝试使用邮递员发布请求。 由于某种原因,我得到400错误请求 - 缺少所需的请求正文。 我的控制器处于弹簧启动环境中。
我的控制器:

    @RestController
    public class HagarController {

      @PostMapping(value = "/hagar")
      @ResponseStatus(HttpStatus.OK)
      public void hagar(@RequestBody String name, @RequestBody String id) 
      throws Exception{
          System.out.println("my name is: " + name +" id: " + id);
      }
    }

The postman request img

谢谢!

1 个答案:

答案 0 :(得分:0)

这就是我的方法,希望对您有所帮助。

@RestController
public class HagarController {

  @ResponseMapping(value = "/add", method = RequestMethod.POST)
  public void hagar(@RequestBody String name, @RequestBody String id) 
      System.out.println("my name is: " + name +" id: " + id);
}

,在邮递员中,您可能在标题中添加了: 查看图片enter image description here