首頁  >  問答  >  主體

java - Springmvc中@RequestBody和@RequestParam能够同时使用吗

 @RequestMapping(value = "", method = RequestMethod.POST)
    public Result get(@RequestBody User user,
                      @RequestParam("username") String hehe) throws Exception {

}

如何能够接受user对象的同时,同时接受username?

假设User对象为

public class User  {

    private String id;

    private String username;

    private String email;

    private String phone;
}
PHP中文网PHP中文网2765 天前699

全部回覆(2)我來回復

  • PHP中文网

    PHP中文网2017-04-17 17:56:20

    雷雷

    回覆
    0
  • PHP中文网

    PHP中文网2017-04-17 17:56:20

    可以的
    如:
    post 一個json資料到
    http://www.google.com?code=1024

    RequestParams 就是 code=1024
    RequestBody 就是你的json資料(題外話:注意content-type)

    回覆
    0
  • 取消回覆