您好,登錄后才能下訂單哦!
spring boot怎么才能升級到spring cloud,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
1、先升級spring boot 版本到2.1.3
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.3.RELEASE</version> <relativePath/> </parent>
如果是從2.0.0以下的版本升級的,升級到2.1.3后請注意redis配置 spring.redis.jedis.*
# redis配置 spring.redis.database = 15 spring.redis.host = 10.10.216.203 spring.redis.port = 6379 spring.redis.password = Redis@123 spring.redis.ssl = false spring.redis.jedis.pool.max-active = 10 spring.redis.jedis.pool.max-idle = 10 spring.redis.jedis.pool.min-idle = 5
2、繼承 spring cloud 相關依賴
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.3.RELEASE</version> <relativePath/> </parent> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
3、如果接入注冊中心,增加consul依賴
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-consul-discovery</artifactId> </dependency>
在application.properties增加注冊中心需要的相關配置:
spring.application.name = 自己項目的名稱,在注冊中心唯一 spring.cloud.consul.host = consul-client.okd.moon.test spring.cloud.consul.port = 80 spring.cloud.consul.discovery.prefer-ip-address = true spring.cloud.consul.discovery.instanceId = ${spring.application.name}-${random.value} spring.cloud.consul.config.enabled = false spring.cloud.consul.config.watch.wait-time = 20
4、如果接入監控系統,增加配置
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> <version>1.0.6</version> </dependency> |
在application.properties增加注冊中心需要的相關配置:
# 監控需要 management.endpoints.web.exposure.include = * management.endpoint.shutdown.enabled = false management.endpoint.health.show-details = always #支持分位計算 management.metrics.distribution.percentiles-histogram.http.server.requests = true |
看完上述內容,你們掌握spring boot怎么才能升級到spring cloud的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。