SpringCloud Alibaba学习笔记 ——(基于 Nacos 实现分布式注册中心)
在Spring Cloud Alibaba中,我们可以使用Nacos作为服务注册中心和配置中心。以下是如何使用Nacos作为服务注册中心的步骤和示例代码:
- 引入Nacos客户端依赖:
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
- 在application.properties或application.yml中配置Nacos服务器地址:
spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
- 启动类上添加@EnableDiscoveryClient注解:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient
public class NacosProviderApplication {
public static void main(String[] args) {
SpringApplication.run(NacosProviderApplication.class, args);
}
}
- 编写服务提供者,通过RestController或者Feign客户端发布服务:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class EchoController {
@Value("${server.port}")
private String serverPort;
@GetMapping(value = "/echo")
public String echo(@RequestParam String message) {
return "Hello " + message + " , port is " + serverPort;
}
}
启动服务提供者后,它将自动注册到Nacos服务注册中心。其他服务可以通过Nacos服务发现机制来发现和调用该服务。
评论已关闭