Spring中基于Http协议RestTemplate初识与场景模拟,十位互联网一线高工手写Java高级知识

public static void main(String[] args) {
SpringApplication.run(HttpDemoApplication.class);
}
//此处简写了,将启动类和Controller写在了一起,正确写法是 @Controller 和此处findUser方法写到累外的位置
@RequestMapping(“user/{id}”)
@ResponseBody
public User findUser(){
//pojo类User自行书写
User user = new User();
user.setId(90L);
user.setName(“lisi”);
return user;
}
//必须为RestTemplate 添加注解
@Bean
public RestTemplate restTemplate(){
return ne

Spring中基于Http协议RestTemplate初识与场景模拟,十位互联网一线高工手写Java高级知识最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/9716.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>