SpringCloud(1)--Eureka(单节点模式)

服务注册中心 

eureka-server服务

在pom.xml添加eureka依赖 ,要注意与Springboot版本之间的对应关系


    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0

    com.example
    eureka-server
    0.0.1-SNAPSHOT
    jar

    eureka-server
    Demo project for Spring Boot

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

   
        UTF-8
        UTF-8
        1.8
   

    
            
                
                    org.springframework.cloud
                    spring-cloud-dependencies
                    Camden.SR7
                    pom
                    import
                

            

    

    
   
       
            org.springframework.boot
            spring-boot-starter
       

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


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

   
    

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

       

   



 

在启动类中添加@EnableEurekaServer

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {

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

application.properties中配置

server.port=8080
#eureka.client.register-with-eureka :表示是否将自己注册到Eureka Server,默认为true。
eureka.client.register-with-eureka=false
#eureka.client.fetch-registry :表示是否从Eureka Server获取注册信息,默认为true。
eureka.client.fetch-registry=false
#eureka.client.serviceUrl.defaultZone :设置与Eureka Server交互的地址,查询服务和注册服务都需要依赖这个地址。
#默认是http://localhost:8761/eureka ;多个地址可使用 , 分隔。
eureka.client.serviceUrl.defaultZone=http://localhost:${server.port}/eureka/ 

启动服务,访问http://localhost:8080/即可

SpringCloud(1)--Eureka(单节点模式)_第1张图片

服务提供者 

eureka-server-1服务

新建一个springboot项目,引入eureka,跟上面pom.xml一样,也需要注意版本一致的问题

新建HelloController

package com.example.demo;

import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    private final Logger logger = Logger.getLogger(getClass());
    @Autowired
    private DiscoveryClient client;

    @RequestMapping(value = "/hello", method = RequestMethod.GET)
    public String index() {
        ServiceInstance instance = client.getLocalServiceInstance();
        logger.info("/hello,hose:" + instance.getHost() + ",server_id:" + instance.getServiceId());
        return "hello World";
    }
}

在启动类添加@EnableEurekaClient

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
public class EurekaServer1Application {

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

在application.properties文件中配置

#服务命名
spring.application.name=hello-service

server.port=8081
#指定服务注册中心的地址
eureka.client.serviceUrl.defaultZone=http://localhost:8080/eureka/

 

启动服务注册中心和服务提供者两个项目,继续访问http://localhost:8080/则可以看到hello-service已经被注册进来

SpringCloud(1)--Eureka(单节点模式)_第2张图片

访问向服务注册中心发起请求,控制台输出如下信息:

2018-11-28 10:13:32.124  INFO 10480 --- [nio-8081-exec-1] com.example.demo.HelloController         : /hello,hose:api.lhqw.gfdx.mtn,server_id:hello-service 

 这些信息就是之前我们在HelloController中注入的DiscoveryClient接口对象,从服务中心或取得服务相关信息

你可能感兴趣的:(Spring,Cloud)