中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

導入SpringCloud依賴失敗如何解決

發布時間:2023-05-08 15:36:55 來源:億速云 閱讀:253 作者:iii 欄目:開發技術

這篇“導入SpringCloud依賴失敗如何解決”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“導入SpringCloud依賴失敗如何解決”文章吧。

    導入SpringCloud依賴踩坑

    在使用SpringCloud的時候需要導入spring-cloud-dependencies的依賴,

    在springcloud的官網上面可以查到版本Version 但是在上面復制下來的版本號如下:

    <dependencyManagement>
       <dependencies>
          <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-dependencies</artifactId>
             <version>Dalston SR3</version>
             <type>pom</type>
             <scope>import</scope>
          </dependency>
       </dependencies>
    </dependencyManagement>

    不知道什么原因,在公司的電腦能可以正常的將依賴下載到本地庫,但是回到宿舍用自己的電腦發現總是下載不下來,一直都是lastUpdate 

    上網找解決方案 

    最后找到maven-repository中發現版本號如下:

    <dependencyManagement>
       <dependencies>
          <dependency>
             <groupId>org.springframework.cloud</groupId>
             <artifactId>spring-cloud-dependencies</artifactId>
             <version>Dalston.SR3</version>
             <type>pom</type>
             <scope>import</scope>
          </dependency>
       </dependencies>
    </dependencyManagement>

    相對比可以發現, maven-repository中的版本號比springcloud官網中的版本號多了一個點(.),采用maven-repository中的版本號則可以將依賴下載到版本庫

    springCloud依賴導入失敗

    導入SpringCloud依賴失敗如何解決

    剛開始用spring Initializr創建spring boot項目,添加spring cloud依賴不成功

    原因是:需要手動添加版本號

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.3.7.RELEASE</version>
            <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>com.springcloud</groupId>
        <artifactId>eureka</artifactId>
        <version>0.0.1-SNAPSHOT</version>
        <name>eureka</name>
        <description>eureka</description>
        <properties>
            <java.version>1.8</java.version>
            <spring-cloud.version>2021.0.3-SNAPSHOT</spring-cloud.version>
        </properties>
        <dependencies>
        	<dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
                <version>3.1.2</version>
            </dependency>
    
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
            
        </dependencies>
        
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.cloud</groupId>
                    <artifactId>spring-cloud-dependencies</artifactId>
                    <version>Finchley.SR1</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
        </build>
        <repositories>
            <repository>
                <id>spring-snapshots</id>
                <name>Spring Snapshots</name>
                <url>https://repo.spring.io/snapshot</url>
                <releases>
                    <enabled>false</enabled>
                </releases>
            </repository>
            <repository>
                <id>spring-milestones</id>
                <name>Spring Milestones</name>
                <url>https://repo.spring.io/milestone</url>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
            </repository>
        </repositories>
    
    </project>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
            <version>3.1.2</version>
        </dependency>
    <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.cloud</groupId>
                    <artifactId>spring-cloud-dependencies</artifactId>
                    <version>Finchley.SR1</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
            </dependencies>
        </dependencyManagement>
    <dependency>
    	<groupId>javax.xml.bind</groupId>
        <artifactId>jaxb-api</artifactId>
    	<version>2.3.1</version>
    </dependency>

    以上就是關于“導入SpringCloud依賴失敗如何解決”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    邢台市| 宁陵县| 石渠县| 旌德县| 资溪县| 罗山县| 晋中市| 乌兰县| 昭通市| 金湖县| 犍为县| 海林市| 武威市| 射阳县| 称多县| 二连浩特市| 高陵县| 中牟县| 绥棱县| 聊城市| 阿巴嘎旗| 凤山市| 马鞍山市| 株洲县| 宁乡县| 德庆县| 荃湾区| 贡觉县| 北宁市| 宝山区| 香河县| 镇原县| 罗平县| 兰溪市| 务川| 阳新县| 虹口区| 杭锦旗| 新田县| 吐鲁番市| 奉新县|