Eureka简单使用

1. 开发Eureka服务注册中心

这里使用的spring cloud版本是Edgware.SR3
使用maven新建一个quickstart工程,pom文件主要内容如下:

 
        org.springframework.boot
        spring-boot-starter-parent
        1.5.13.RELEASE
  
   
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Edgware.SR3
                pom
                import
            
        
    
    
        
            org.springframework.cloud
            spring-cloud-starter-config
        
        
            org.springframework.cloud
            spring-cloud-starter-eureka
        
        
            org.springframework.cloud
            spring-cloud-starter-eureka-server
        
    

新建启动类

@SpringBootApplication
@EnableEurekaServer
public class EurekaRegisterCenter {
    public static void main(String[] args) {
        SpringApplication.run(EurekaRegisterCenter.class, args);
    }
}

这里的@EnableEurekaServer 注解表示启动EurekaServer,即启动服务注册中心。

新建配置文件 src/main/resources/application.yml

server:
  port: 8761
eureka:
  client:
    registerWithEureka: false
    fetchRegistry: false
  • 这里设置了端口是8761端口
  • eureka.client.registerWithEureka 表明不将自己作用服务注册到别的注册中心上,需要注意的是,eureka server同时也可以是一个eureka client,也可以注册到别的注册中心,这一块我们到后面的高可用集群再说。
  • eureka.client.fetchRegistry,表示此服务不抓取注册中心信息。

打开浏览器,输入http://localhost:8761/,就可以看到Eureka的控制台

2.开发服务提供者

同样新建一个工程,pom文件主要内容如下:


        org.springframework.boot
        spring-boot-starter-parent
        1.5.13.RELEASE
 

        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Edgware.SR3
                pom
                import
            
        
    
    
        
            org.springframework.cloud
            spring-cloud-starter-config
        
        
            org.springframework.cloud
            spring-cloud-starter-eureka
        
    

新建配置文件 src/main/resources/application.yml

server:
  port: 8080
spring:
  application:
    name: eureka-demo-provider
eureka:
  instance:
    hostname: localhost
  client:
    serverUrl:
      defaultZone: http://localhost:8761/eureka

配置了端口,服务名称,主机地址,还有服务注册中心的地址

新建一个用于接收服务消费者调用的rest接口

@RestController
public class SayHelloController {
    @RequestMapping(value = "/sayHello/{name}", method = RequestMethod.GET)
    public String sayHello(@PathVariable("name") String name) {
        return "hello," + name;
    }
}

应用启动类

@SpringBootApplication
@EnableEurekaClient
public class EurekaDemoProvider {
    public static void main(String[] args) {
        SpringApplication.run(EurekaDemoProvider.class, args);
    }
}

@EnableEurekaClient,表明这是个Eureka客户端应用,需要向Eureka服务端注册自己为一个服务。
此时看一下Eureka控制台,就会发现一个名为eureka-demo-provider的服务出现。

3.开发一个服务调用者

新建工程,pom文件主要内容


        org.springframework.boot
        spring-boot-starter-parent
        1.5.13.RELEASE


        
            
                org.springframework.cloud
                spring-cloud-dependencies
                Edgware.SR3
                pom
                import
            
        
    
    
        
            org.springframework.cloud
            spring-cloud-starter-config
        
        
            org.springframework.cloud
            spring-cloud-starter-eureka
        
        
            org.springframework.cloud
            spring-cloud-starter-ribbon
        
    

调用者需要引入spring-cloud-starter-ribbon依赖,因为我们要使用ribbon来进行客户端负载均衡调用。

新建配置文件 src/main/resources/application.yml

server:
  port: 8081
spring:
  application:
    name: eureka-demo-consumer
eureka:
  instance:
    hostname: localhost
  client:
    serverUrl:
      defaultZone: http://localhost:8761/eureka

配置了eureka地址,就可以从eureka抓取到所有注册的服务了

新建一个配置类,定义RestTemplate,结合Ribbon可以实现客户端负载均衡,Ribbon我后面的博客也会写。这里使用@Bean注解,表示注册一个bean到spring上下文中。

@Configuration
public class EurekaDemoConfiguration {
 /**
     * LoadBalanced 基于ribbon进行负载均衡
     * @return
     */
    @Bean
    @LoadBalanced
    public RestTemplate getRestTemplate() {
        return new RestTemplate();
    }
}

新建一个给用户访问的rest接口

@RestController
public class GreetingController {
    @Autowired
    RestTemplate restTemplate;
   
    @RequestMapping(value = "/greeting/{name}", method = RequestMethod.GET)
    public String greeting(@PathVariable("name") String name) {
        //使用restTemplate发送http请求
        return restTemplate.getForObject("http://eureka-demo-provider/sayHello/" + name, String.class);
    }
}

新建启动类

@SpringBootApplication
@EnableDiscoveryClient
@EnableEurekaClient
public class EurekaDemoConsumer {
    public static void main(String[] args) {
        SpringApplication.run(EurekaDemoConsumer.class, args);
    }
}

然后在浏览器里访问,http://localhost:8081/greeting/animal。

你可能感兴趣的:(Eureka简单使用)