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成神之路。
共有 0 条评论