搭建SpringbootAdmin監控中心報錯A attempt was made to call the method reactor.retry.Retry.retryMax(I)Lreactor

遇到了一樣的錯誤,轉載記錄下:

轉載自:https://blog.csdn.net/qq_41938882/article/details/85048953
spring


 

 

  很明顯,尚未啓動成功就報錯了.報錯緣由,很明顯,說jar包的位置不對.網上關於這類的資料也不對,根本緣由就是pom.xml文件中版本依賴有問題,好比你的項目依賴的是2.1.0版本的工程,你其餘的子依賴,必須也是2.1.0。我報錯的緣由就是spring-boot-admin-starter-server的version版本是2.1.0沒有和parent中的version對應。最後改爲2.0.0就能夠啓動成功!

    <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId> spring-boot-starter-parent</artifactId>
            <version> 2.1.0.RELEASE</version>
            <relativePath/> <!-- lookup parent from repository -->
        </parent>

     <dependency>
                <groupId>de.codecentric</groupId>
                <artifactId> spring-boot-admin-starter-server</artifactId>
                <version> 2.1.0</version>
      </dependency>

     完事,SpringbootAdmin監控中心啓動成功

 

相關文章
相關標籤/搜索