検索

ホームページ  >  に質問  >  本文

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中文网2814日前724

全員に返信(2)返信します

  • PHP中文网

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

    リーリー

    返事
    0
  • PHP中文网

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

    はい
    例:
    json データを
    http://www.google.com?code=1024

    に投稿します

    RequestParams は code=1024 です
    RequestBody は json データです (本題から外れます: content-type に注意してください)

    返事
    0
  • キャンセル返事