Springboot接受参数的几种方式

Springboot接受参数的几种方式,第1张

Springboot接受参数的几种方式

1、get方式?传参:

http://localhost:8089/show/?id=123
    @GetMapping("/show")
    public ResponseEntity show(String id) {
        return ResponseEntity.ok(id);
    }

2、get方式路径传参

```java
http://localhost:8089/show/123
    @GetMapping("/show/{id}")
    public ResponseEntity show(@PathVariable(name = "id") String id) {
        return ResponseEntity.ok(id);
    }

3、javabeen接收参数

//实体类
import lombok.Data;
import java.io.Serializable;
@Data
public class UserDTO implements Serializable {
    private String idno;
    private String name;
}
--------------------------------------------------------------
    @PostMapping("/postShow")
    public ResponseEntity postShow(@RequestBody User user) {
        logger.info("返回参数:"+ResponseEntity.ok(user.getIdno()));
        return ResponseEntity.ok(Cfcactive.getIdno());
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5707519.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存