這期內(nèi)容當中小編將會給大家?guī)碛嘘PSpringBoot中怎么接收請求參數(shù),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
站在用戶的角度思考問題,與客戶深入溝通,找到績溪網(wǎng)站設計與績溪網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設計與互聯(lián)網(wǎng)技術結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站建設、網(wǎng)站設計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)站空間、企業(yè)郵箱。業(yè)務覆蓋績溪地區(qū)。
application/json接收
/** * 參數(shù)不可為空,可為{} * userDto中的屬性 非必填 */ @RequestMapping("/hello5") public String hello5(@RequestBody UserDto userDto) { return userDto.getName() + "," \+ userDto.getAge(); }
x-www-form-urlencoded、?拼接、form-data接收
@RequestMapping("/hello1") public String hello1(@RequestParam("name") String name) { return name; } @RequestMapping("/hello2") public UserDto hello2(@RequestHeader("name") String name, @RequestHeader("age") Integer age) { return new UserDto(name, age); } /** * @param name 非必填 */ @RequestMapping("/hello3") public String hello3(String name) { return name; } /** * userDto中的屬性 非必填 */ @RequestMapping("/hello4") public String hello4(UserDto userDto) { return userDto.getName() + "," \+ userDto.getAge(); }
UserDto
public class UserDto { private String name; private Integer age; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } }
上述就是小編為大家分享的SpringBoot中怎么接收請求參數(shù)了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。