RestTemplate get 方式,getForObject 请求时带有参数的6种情况

来自姬鸿昌的知识库
Jihongchang讨论 | 贡献2023年3月26日 (日) 05:40的版本
跳到导航 跳到搜索

https://www.bilibili.com/video/BV1AN411Z7mx?p=9

Application Service 中的 DemoController.java

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class DemoController {

    @RequestMapping("/demo2")
    public String demo2(String name, Integer age) {
        return "name:" + name + ",age:" + age;
    }

}