亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在idea環境下構建springCloud項目

發布時間:2020-10-04 01:11:34 來源:腳本之家 閱讀:328 作者:onpwerb 欄目:編程語言

 springCloud是基于springboot搭建的微服務。它利用Spring Boot的開發便利性巧妙地簡化了分布式系統基礎設施的開發,如服務發現注冊、配置中心、消息總線、負載均衡、斷路器、數據監控等,都可以用Spring Boot的開發風格做到一鍵啟動和部署。

spring cloud官方文檔:http://projects.spring.io/spring-cloud/

spring cloud 中文網 : https://springcloud.cc/

最終搭建后的工程源代碼:https://github.com/onpwerb/SpringCloud

一、新建maven工程

根據spring cloud官方文檔,在pom.xml導入如下代碼

<!-- spring cloud 配置 -->
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.5.RELEASE</version>
  </parent>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-dependencies</artifactId>
        <version>Camden.SR6</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-eureka</artifactId>
    </dependency>

二、建立注冊中心

新建名稱為 discovery 的 module

1.在該module下的pom.xml導入如下配置:

<!-- @EnableEurekaServer -->
  <dependencies>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-netflix-eureka-server</artifactId>
      <!--<version>1.1.6.RELEASE</version>-->
    </dependency>
  </dependencies>

2.在src/main/java目錄下新建discovery文件夾,然后新建一個application

package discovery;

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

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

3.在該module下的src/main/resources文件夾下,新建文件application.yml,配置注冊中心eureka的相關服務

server:
 port: 8081
eureka:
 instance:
  hostname: localhost
 client:
  registerWithEureka: false
  fetchRegistry: false
  serviceUrl:
   defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

三、構建一個服務A

新建一個名為service的module

1.在src/main/java目錄下新建service文件夾,然后新建一個application

package service;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@EnableDiscoveryClient
@RestController
public class ServiceApplication {
  @GetMapping("/service")
  public String service(){
    return "service";
  }

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

2.在該module下的src/main/resources文件夾下,新建文件application.yml

spring:
 application:
  name: service.service
eureka:
 client:
  serviceUrl:
   defaultZone: http://localhost:8081/eureka/
server:
 port: 8082

四、構建第二個服務B

新建一個名為service2的module

1.在src/main/java目錄下新建service2文件夾,然后新建一個application

package service2;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@EnableDiscoveryClient
@RestController
public class Service2Application {
  @RequestMapping("/service2")
  public String service2(){
    return "service2";
  }

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

2.在該module下的src/main/resources文件夾下,新建文件application.yml

spring:
 application:
  name: service2
eureka:
 client:
  serviceUrl:
   defaultZone: http://localhost:8081/eureka/
server:
 port: 8083

五、配置網關

新建名稱為 gateway 的 module

1.在該module下的pom.xml導入如下配置:

package gateway;

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

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

2.在src/main/java目錄下新建gateway文件夾,然后新建一個application

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

3.在該module下的src/main/resources文件夾下,新建文件application.yml

六、啟動服務

先啟動discovery模塊,再啟動其他模塊

在瀏覽器依次輸入:

http://localhost:8081/
http://localhost:8082/service
http://localhost:8083/service2
http://localhost:8084/service/service
http://localhost:8084/service2/service2

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

英德市| 平塘县| 鄂州市| 铜川市| 德格县| 金乡县| 礼泉县| 长寿区| 安丘市| 青州市| 体育| 聂荣县| 农安县| 奎屯市| 定远县| 双桥区| 鄂尔多斯市| 土默特右旗| 重庆市| 天祝| 昔阳县| 民权县| 达州市| 两当县| 泰州市| 宁乡县| 台山市| 曲麻莱县| 全南县| 普安县| 松桃| 甘孜| 沙坪坝区| 吉安县| 兴安盟| 化德县| 永昌县| 乌兰察布市| 柏乡县| 兴文县| 阿拉善左旗|