@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;
}
으아악
예
에 게시하세요.예:
json 데이터를
http://www.google.com?code=1024
RequestParams는 코드=1024
RequestBody는 json 데이터입니다(주제 제외: 콘텐츠 유형에 주의하세요)