内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

JavaB2B2C多用戶商城springboot架構(gòu)——springcloud整合bus

bus的使用主要是配合springcloud config部分來一起使用,并沒有單獨使用

創(chuàng)新互聯(lián)專注于企業(yè)成都全網(wǎng)營銷推廣、網(wǎng)站重做改版、當陽網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、H5技術(shù)、商城網(wǎng)站開發(fā)、集團公司官網(wǎng)建設、外貿(mào)營銷網(wǎng)站建設、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為當陽等各大城市提供網(wǎng)站開發(fā)制作服務。

首先建立服務端:

<dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-config-server</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency

由于本次使用的是rabbitmq進行監(jiān)聽
了解springcloud架構(gòu)可以加求求:三五三六二四七二五九
所以需要在依賴中引入amqp。這是rabbitmq采用的協(xié)議

server:
  port: 8080
spring:
  application:
    name: microservice-config-server
  cloud:
    config:
      server:
        git:
          uri: https://git.oschina.net/itmuch/spring-cloud-config-repo      # 配置Git倉庫的地址
          username:                                                         # Git倉庫的賬號
          password:                                                         # Git倉庫的密碼
    bus:
      trace:
        enabled: true     # 開啟cloud bus的跟蹤
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
password: guest

然后再次配置連接,連接rabbitmq的地址

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class ConfigServerApplication {
  public static void main(String[] args) {
    SpringApplication.run(ConfigServerApplication.class, args);
  }
}

再配置服務端:

<dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-config</artifactId>
    </dependency>
    
    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-bus-amqp</artifactId>
</dependency>

application.yml

server:
port: 8081

bootstrap.yml

復制代碼
spring:
  application:
    name: microservice-foo    # 對應config server所獲取的配置文件的{application}
  cloud:
    config:
      uri: http://localhost:8080/
      profile: dev            # profile對應config server所獲取的配置文件中的{profile} 
      label: master           # 指定Git倉庫的分支,對應config server所獲取的配置文件的{label}
  rabbitmq:
    host: localhost
    port: 5672
    username: guest
password: guest

文章標題:JavaB2B2C多用戶商城springboot架構(gòu)——springcloud整合bus
本文來源:http://www.rwnh.cn/article34/igispe.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供標簽優(yōu)化、網(wǎng)站設計域名注冊、建站公司、移動網(wǎng)站建設、網(wǎng)站營銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設
建阳市| 湘阴县| 福州市| 林口县| 那坡县| 绵竹市| 泾阳县| 鄂托克前旗| 驻马店市| 阳新县| 塔河县| 尖扎县| 彭山县| 甘洛县| 武乡县| 小金县| 遂平县| 长兴县| 外汇| 丽水市| 龙岩市| 繁峙县| 武城县| 东乡族自治县| 贵阳市| 南开区| 淮阳县| 伽师县| 洛川县| 长泰县| 洛扎县| 治多县| 镇原县| 共和县| 哈尔滨市| 监利县| 甘南县| 茌平县| 科尔| 梧州市| 淳化县|