SpringCloud使用Nacos服务发现实现远程调用
本文使用SpringCloud结合Nacos服务发现,Feign远程调用做一个简单的Demo。1 Nacos 关于Nacos之前写了两篇文章关于SpringBoot对它的使用,感兴趣可以查看一下。
《SpringBoot使用Nacos配置中心》
《SpringBoot使用Nacos服务发现》
在SpringBoot使用的时候,需要自行去向Nacos服务注册自己的服务,Nacos也提供了SpringCloud服务发现的依赖,本文结合spring-cloud-starter-alibaba-nacos-discovery进行使用介绍。
本文使用版本为:
- SpringCloud Finchley.SR2
- SpringBoot 2.0.3.RELEASE
- spring-cloud-starter-alibaba-nacos-discovery 0.2.1.RELEASE
- spring-cloud-starter-openfeign 2.0.0.RELEASE
- springcloud-nacos-discovery-provider:端口号10000,服务提供者。
- springcloud-nacos-discovery-consumer:端口号10001,服务消费者。
3.服务提供者 3.1 依赖配置 创建一个项目,项目中加入SpringCloud-Nacos依赖,完整pom如下所示。
4.0.0 org.springframework.boot
spring-boot-starter-parent
2.0.3.RELEASE
com.dalaoyang
springcloud_nacos_discovery_provider
0.0.1-SNAPSHOT
springcloud_nacos_discory_provider
springcloud_nacos_discovery_provider 1.8
Finchley.SR2
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-starter-alibaba-nacos-discovery
0.2.1.RELEASE
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
3.2 启动类 【SpringCloud使用Nacos服务发现实现远程调用】在启动类加入@SpringBootApplication注解,完整启动类代码如下所示。
package com.dalaoyang;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient
public class SpringcloudNacosDiscoveryProviderApplication {public static void main(String[] args) {
SpringApplication.run(SpringcloudNacosDiscoveryProviderApplication.class, args);
}}
3.3 配置文件 配置文件中配置Nacos服务地址,当前服务名,这里需要注意一点,使用Ribbon负载均衡的时候服务名中不能使用下划线,不然会找不到服务。
配置文件如下所示。
server.port=10000
spring.application.name=springcloud-nacos-discovery-provider
spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
3.4 提供服务 创建一个Controller,提供一个方法进行测试,如下所示。
package com.dalaoyang.controller;
import org.springframework.web.bind.annotation.*;
/**
* @author yangyang
* @date 2019/2/4
*/
@RestController
public class TestController {@GetMapping("/test/{string}")
public String test(@PathVariable String string) {
return "Hello Nacos :" + string;
}
}
4 服务消费者 4.1 依赖配置 与服务提供者类似,在服务消费者加入SpringCloud-Nacos依赖和OpenFeign依赖,完整pom入夏所示。
4.0.0 org.springframework.boot
spring-boot-starter-parent
2.0.3.RELEASE
com.dalaoyang
springcloud_nacos_discovery_consumer
0.0.1-SNAPSHOT
springcloud_nacos_discovery_consumer
springcloud_nacos_discovery_consumer 1.8
Finchley.SR2
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-openfeign
2.0.0.RELEASE
org.springframework.cloud
spring-cloud-starter-alibaba-nacos-discovery
0.2.1.RELEASE
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
${spring-cloud.version}
pom
import
org.springframework.boot
spring-boot-maven-plugin
4.2 启动类 在启动类加入注解@EnableDiscoveryClient并且开启负载均衡,如下所示。
package com.dalaoyang;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
@EnableDiscoveryClient
public class SpringcloudNacosDiscoveryConsumerApplication {public static void main(String[] args) {
SpringApplication.run(SpringcloudNacosDiscoveryConsumerApplication.class, args);
}@LoadBalanced
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}}
4.3 配置文件 配置文件与提供者一致,只是服务名不同,如下所示。
server.port=10001
spring.application.name=springcloud-nacos-discovery-consumer
spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
4.4 创建服务调用 创建一个Controller进行调用服务,如下所示。
package com.dalaoyang.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
/**
* @author yangyang
* @date 2019/2/4
*/
@RestController
public class TestConrtroller {@Autowired
private RestTemplate restTemplate;
@GetMapping("test/{string}")
public String test(@PathVariable String string) {
return restTemplate.getForObject("http://springcloud-nacos-discovery-provider/test/" + string, String.class);
}
}
5 测试 分别启动两个服务,查看Nacos管理页面,如图所示。
文章图片
image 点击详情可以查看服务的详细信息,如端口号,权重等,如图所示。
文章图片
image 接下俩在浏览器访问http://localhost:10001/test/dalaoyang,远程调用成功。
文章图片
image 6.源码 服务提供者:https://gitee.com/dalaoyang/springcloud_learn/tree/master/springcloud_nacos_discovery_provider
服务消费者:https://gitee.com/dalaoyang/springcloud_learn/tree/master/springcloud_nacos_discovery_consumer
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程
- 使用composer自动加载类文件
- android|android studio中ndk的使用
- 使用协程爬取网页,计算网页数据大小