IDEA 中构建Spring Cloud内部服务调用(二)

IDEA 中构建Spring Cloud内部服务调用Ribbon(二)

本文是基于 IDEA 中构建Spring Cloud注册和服务发现中心(一)的基础上进行的添加和修改

创建Module,client1

1,在src.main.java包下新建文件夹client1

2,在client1下创建启动服务主类:Client1Application

package client1;

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 Client1Application {
    public static void main(String[] args) {
        SpringApplication.run(Client1Application.class, args);
    }
    @Bean
    @LoadBalanced
    RestTemplate restTemplate(){
        return new RestTemplate();
    }
}

3,在client1下创建调用内部服务的消费者测试类:TestController.java

package client1;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

@RestController
@RequestMapping(value = "/client1")
public class TestController {

    @Autowired
    RestTemplate restTemplate;

    @RequestMapping("/hi")
    public String hi(@RequestParam String id){
//      url中第一个service1为调用服务类注册时的名称,后面是请求地址
        String url = "http://service1/service1/hi?id="+id;
        return restTemplate.getForObject(url, String.class);
    }
}

4,在resource文件夹下创建配置文件:application.yml

spring:
  application:
    name: client1
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8081/eureka/
server:
  port: 6001

5,在 IDEA 中构建Spring Cloud注册和服务发现中心(一)中的路由配置文件中注册client1

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8081/eureka/
spring:
  application:
    name: gateway
server:
  port: 8084
zuul:
  routes:
    service1: /service1/**
    client1: /client1/**

6,输入测试地址:

http://localhost:6001/client1/hi?id=234
http://localhost:8084/client1/client1/hi?id=234

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值