spring cloud部署問題記錄

2021-09-10 08:37:59 字數 1230 閱讀 8258

// 錯誤**

server:

port:8000

//正確**

server:

port: 8000

-配置management.endpoints.jmx.exposure.include=*不生效,yml檔案value符號要使用引號括起來

// 錯誤**

management:

endpoint:

health:

show-details: always

endpoints:

jmx:

exposure:

include: *

//正確**

management:

endpoint:

health:

show-details: always

endpoints:

jmx:

exposure:

include: "*"

-spring security配置安全策略啟動報錯

#配置安全策略在2.0版本中移除,spring security預設自動開啟安全策略

security:

basic:

enabled:

false

#如果想取消安全策略,可以在啟動器中移除

@enableautoconfiguration

(exclude =

)

–服務端配置security後客戶端修改為http://user:password@eureka_host:port/eureka/仍然報錯,com.netflix.discovery.shared.transport.transportexception: cannot execute request on any known server。

解決方法:

@configuration

@enablewebsecurity

public class websecurityconfig extends websecurityconfigureradapter

@autowired

public void configureglobal(authenticationmanagerbuilder auth) throws exception

}

SpringCloud相關問題

問題1 myservice子模組中pom檔案在引入了 com.alibaba.cloud spring cloud starter alibaba nacos discovery 之後就一直報錯?答 com.alibaba.cloud 錯誤 org.springframework.cloud 正確 ...

SpringCloud版本問題

springboot工程在配置eureka server後啟動報錯 lj a lang object v at org.springframework.boot.context.event.eventpublishingrunlistener.environmentprepared eventpub...

詳解關於Spring Cloud 框架熱部署的方法

摘要 所謂熱部署,就是在應用正在執行的時候公升級軟體,卻不需要重新啟動應用。對於j a應用程式來說,熱部署就是在執行時更新j a類檔案。1 在對應的pom.xml 檔案中新增依賴 org.springf 程式設計客棧 spring boot devtools true 2 注 project 中新增...