第二篇:服務(wù)提供者 (eureka client)

轉(zhuǎn)載請標(biāo)明出處: http://www.reibang.com/p/4fe0c858b913
本文出自Owater的博客

服務(wù)提供者 (eureka client)

創(chuàng)建Module,命名為service-a
pom.xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.owater</groupId>
    <artifactId>service-a</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>service-a</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <artifactId>docker-springcloud-parent</artifactId>
        <groupId>com.owater</groupId>
        <version>0.0.1</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka-server</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix-dashboard</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-hystrix</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
                <configuration>
                    <imageName>${project.name}:${project.version}</imageName>
                    <dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
                    <resources>
                        <resource>
                            <targetPath>/</targetPath>
                            <directory>${project.build.directory}</directory>
                            <include>${project.build.finalName}.jar</include>
                        </resource>
                    </resources>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

Application添加@EnableEurekaClient 啟用eureka client

@SpringBootApplication
@EnableEurekaClient
public class ServiceAApplication {

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

application.yml文件還需要配置eureka注冊地址椎眯,配置如下:

server:
  port: 8080

spring:
  application:
    name: service-a

eureka:
  instance:
    hostname: localhost
  client:
    registerWithEureka: true
    fetchRegistry: true
    serviceUrl:
      defaultZone: http://${eureka.instance.hostname}:7000/eureka/

這里的spring.application.name是當(dāng)前該服務(wù)的名稱,各個服務(wù)之間的訪問通信是通過這個name得问,而并非是IP地址

添加個controller

@RestController
public class HomeController {

    @Value("${server.port}")
    String port;

    @GetMapping("hi")
    public String index(@RequestParam String name) {
        return "hi "+name+", port:" +port;
    }

    public String hiError(String name) {
        return "hi,"+name+",error lalalala!";
    }
}
Eureka注冊

通過訪問http://localhost:8080/hi?name=Owater

訪問結(jié)果

源碼參考:https://github.com/Owater/docker_springcloud/tree/master/service-a
Spring Cloud Eureka 官方文檔

轉(zhuǎn)載請標(biāo)明出處: http://www.reibang.com/p/4fe0c858b913
本文出自Owater的博客

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末佑菩,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子叭莫,更是在濱河造成了極大的恐慌肯夏,老刑警劉巖经宏,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異驯击,居然都是意外死亡烁兰,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進店門徊都,熙熙樓的掌柜王于貴愁眉苦臉地迎上來沪斟,“玉大人,你說我怎么就攤上這事暇矫≈髦” “怎么了?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵李根,是天一觀的道長槽奕。 經(jīng)常有香客問我,道長房轿,這世上最難降的妖魔是什么粤攒? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任箩退,我火速辦了婚禮盔粹,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘糖驴。我一直安慰自己洪唐,他們只是感情好钻蹬,可當(dāng)我...
    茶點故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著凭需,像睡著了一般。 火紅的嫁衣襯著肌膚如雪肝匆。 梳的紋絲不亂的頭發(fā)上粒蜈,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天,我揣著相機與錄音旗国,去河邊找鬼枯怖。 笑死,一個胖子當(dāng)著我的面吹牛能曾,可吹牛的內(nèi)容都是我干的度硝。 我是一名探鬼主播肿轨,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼蕊程!你這毒婦竟也來了椒袍?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤藻茂,失蹤者是張志新(化名)和其女友劉穎驹暑,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體辨赐,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡优俘,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了掀序。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片帆焕。...
    茶點故事閱讀 38,100評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖不恭,靈堂內(nèi)的尸體忽然破棺而出视搏,到底是詐尸還是另有隱情,我是刑警寧澤县袱,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布浑娜,位于F島的核電站,受9級特大地震影響式散,放射性物質(zhì)發(fā)生泄漏筋遭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一暴拄、第九天 我趴在偏房一處隱蔽的房頂上張望漓滔。 院中可真熱鬧,春花似錦乖篷、人聲如沸响驴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽豁鲤。三九已至,卻和暖如春鲸沮,著一層夾襖步出監(jiān)牢的瞬間琳骡,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工讼溺, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留楣号,地道東北人。 一個月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像炫狱,于是被迫代替她去往敵國和親藻懒。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容