03 nacos-远程调用

2021-02-11  本文已影响0人  张力的程序园

上一节我们在nacos上注册了服务,这一节我们尝试去调用该服务。

1、前提约束

2、操作步骤

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
        </dependency>

注意:笔者使用的spring-boot版本是2.3.7.RELEASE,spring-cloud-alibaba版本是2.2.2.RELEASE

spring.application.name=nacos-consumer
spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
server.port=10002
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;

@Configuration
public class NacosConfig {

    @LoadBalanced
    @Bean
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }
}
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

import javax.annotation.Resource;

@RestController
public class TestController {

    @Resource
    private RestTemplate restTemplate;

    @GetMapping("/test")
    public String test(){
        return  restTemplate.getForObject("http://nacos-provider/get", String.class);
    }
}
上一篇下一篇

猜你喜欢

热点阅读