搭建springcloud框架最小系统

一,原理图:

搭建springcloud框架最小系统_第1张图片

•Eureka:就是服务注册中心(可以是一个集群),对外暴露自己的地址
•提供者:启动后向Eureka注册自己信息(地址,提供什么服务)
•消费者:向Eureka订阅服务,Eureka会将对应服务的所有提供者地址列表发送给消费者,并且定期更新
•心跳(续约):提供者定期通过http方式向Eureka刷新自己的状态


2  创建EurekaServer注册中心

2.1创建springboot项目及配置

也可以使用eclipse工具创建,创建之后pom.xml文件 如下所示,


    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.7.RELEASE
        
    

    com.sinosoft.aml
    aml-eureka
    0.0.1-SNAPSHOT
    aml-rureka
    Demo project for Spring Boot

    
        1.8
        Greenwich.SR2
          
        UTF-8

    

    
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
        

        
            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
            

        

    


2.2配置文件application.yml

server:
  port: 8888

 
eureka:
  instance:
    hostname: localhost 
  client:
    register-with-eureka: false
    fetch-registry: false
    serviceUrl:
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka

2.3 启动类添加注解:开启Eureka

@SpringBootApplication
@EnableEurekaServer//声明这是一个EurekaServer
public class AmlEurekaApplication {

    public static void main(String[] args) {
        SpringApplication.run(AmlEurekaApplication.class, args);
    }

}

2.4   启动服务,并访问:启动http://127.0.0.1:8888/,出现以下界面则说明配置eureka成功

å¨è¿éæå¥å¾çæè¿°

3 服务提供方的实现

3.1创建普通springboot项目

其pom.xml文件为:


    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0
    com.sinosoft.aml
    aml-server-demo
    0.0.1-SNAPSHOT
    aml-server-demo
    Demo project for Spring Boot
   
        org.springframework.boot
        spring-boot-starter-parent
        2.1.7.RELEASE
       
   

     
        1.8
        Greenwich.SR2
          
        UTF-8
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
          
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
       

 

        
            org.springframework.boot
            spring-boot-starter-test
            test
        

    
    
    
       
           
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
                

       

   

    
     
   
       
            spring-milestones
            Spring Milestones
            https://repo.spring.io/milestone
           
                false
           

       

   


    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            

        

    

4.2 配置文件application.yml文件为

server:
  port: 8889
spring:
  application:
    name: aml-service-demo   ##踩坑2,配置中心根据这个name来识别服务的类别,如下图所示
  main:
    allow-bean-definition-overriding: true 
eureka:
  client:
    service-url: 
      defaultZone: http://127.0.0.1:8888/eureka/
  instance:
    prefer-ip-address: true
    ip-address: 127.0.0.1

2.3 启动类添加注解:开启Eureka

@SpringBootApplication
@EnableEurekaServer//声明这是一个EurekaServer
public class AmlEurekaApplication {

    public static void main(String[] args) {
        SpringApplication.run(AmlEurekaApplication.class, args);
    }

}

2.4   启动服务

@SpringBootApplication
@EnableEurekaClient  //开启EurekaClient功能
public class AmlServiceDemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(AmlServiceDemoApplication.class, args);
    }

}

2.5 创建一个简单调用接口

@RestController
@RequestMapping("user")
public class HelloController {
    @GetMapping(value = "/{name}")
    public String helloName(@PathVariable("name") String name) {
        return "Hello" + name;

    }

2.6 启动服务,下面两种情况都出现的,说明EurekaClient成功

(1)EurekaServer中显示相关信息

(2) 浏览器中输入http://127.0.0.1:8889/user/springcloud显示

搭建springcloud框架最小系统_第2张图片

4 服务消费方的实现

4.1创建普通springboot项目

其pom.xml文件和EurekaServer只有一个属性有差别

    aml-consumer-demo
4.2

配置类配置Eureka注册信息

server:
  port: 8890
spring:
  application:
    name: consumer # 应用名称
eureka:
  client:
    service-url: # EurekaServer地址
      defaultZone: http://127.0.0.1:8888/eureka
  instance:
    prefer-ip-address: true # 当其它服务获取地址时提供ip而不是hostname
    ip-address: 127.0.0.1 # 指定自己的ip信息,不指定的话会自己寻找
 

 4.3启动类为

@SpringBootApplication
@EnableDiscoveryClient
public class AmlConsumerDemoApplication {
    @Bean
    public RestTemplate restTemplate() {
        return new RestTemplate();
    }
    

    public static void main(String[] args) {
        SpringApplication.run(AmlConsumerDemoApplication.class, args);
    }

}

4.4调用接口类为

@RestController
@RequestMapping("/consume")
public class ConsumerController {

    @Autowired
    private RestTemplate restTemplate;

    @Autowired
    private DiscoveryClient discoveryClient;

    @GetMapping
    public String consume(@RequestParam("id") String id) {
        //1、 根据user-service获取user-serivce 的集群的信息
        List instances = discoveryClient.getInstances("aml-service-demo");//注意和eureka中相关Application

      //名称保持一致

        //2、由于我们没有集群,只有一个,所以直接取出第一个
        ServiceInstance instance = instances.get(0);
        //3、拼接URL
        String url = "http://"+instance.getHost()+":"+instance.getPort()+"/user/"+id;
        // 使用restTemplate发起请求
        ResponseEntity entity = restTemplate.getForEntity(url, String.class);
        // 获取返回对象
        String body = entity.getBody();
        return body;

    }


}

5  验证

在浏览器中输入http://127.0.0.1:8890/consume?id=springcloud1,消费端会从配置中心获取服务端的地址,并调用相关方法,效果如下:

 

你可能感兴趣的:(springboot,springcloud)