1. 程式人生 > >搭建SpringbootAdmin監控中心報錯A attempt was made to call the method reactor.retry.Retry.retryMax(I)Lreactor/ret)

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

jar serve ring att ota actor detail http 明顯

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

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


技術分享圖片

很明顯,還沒有啟動成功就報錯了.報錯原因,很明顯,說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監控中心啟動成功

技術分享圖片

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