欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

SpringBoot请求参数接收方式

时间:2020-10-03 10:15:32|栏目:JAVA代码|点击:

application/json接收

/** 
 * 参数不可为空,可为{}
 * 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; 
  } 
}

上一篇:Java原生序列化和反序列化代码实例

栏    目:JAVA代码

下一篇:Spring Boot Actuator监控的简单使用方法示例代码详解

本文标题:SpringBoot请求参数接收方式

本文地址:http://www.codeinn.net/misctech/6430.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有