springcloud基础入门
2021-07-03 08:06
标签:alt 技术 str getter 提供者 服务提供者 img 实体 服务 1.环境搭建
实体类 package com.test.springcloud.provider.pojo; public class User { } package com.test.springcloud.provider.controller; import com.test.springcloud.provider.pojo.User; @RestController springcloud基础入门 标签:alt 技术 str getter 提供者 服务提供者 img 实体 服务 原文地址:https://www.cnblogs.com/blackCatFish/p/9623458.html
在开始SpringCloud之前,先看一下一个简单的服务提供者和服务消费者。服务提供者提供一个REST风格的HTTP接口给服务消费者。
1.2pom配置
private Long id;
private String username;
//getter/setter略
controller层
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
public class UserController {
@GetMapping("/simple/{id}")//rest 风格,微服务一般都使用 rest 风格
public User findById(@PathVariable Long id) {
User user=new User();
user.setId(id);
user.setUsername("hello "+id);
return user;
}
}