谷粒商城nacos远程配置中心出错

Posted Cherish°

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谷粒商城nacos远程配置中心出错相关的知识,希望对你有一定的参考价值。

首先检查配置文件是否正确创建

image-20210514122028253

application.yml ,application.properties 最好不要有中文,有中文注释也不行。

yml文件格式容易出错。 确定其他没有错之后,最后解决方法 删除重新建立一个

nacos中心配置文件建立要正确

image-20210514122527067

如果还是报错,检查你的springcloud版本和springboot版本

coupon模块中引入的依赖

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Greenwich.SR3</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.8.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

在common中是否引入了对应的依赖

<!--        nacos的配置中心-->
        <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
        </dependency>

    <dependencyManagement>
        <dependencies>
<!--            springcloud版本依赖-->
            <dependency>
                <groupId>com.alibaba.cloud</groupId>
                <artifactId>spring-cloud-alibaba-dependencies</artifactId>
                <version>2.1.0.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

以上是关于谷粒商城nacos远程配置中心出错的主要内容,如果未能解决你的问题,请参考以下文章

谷粒商城-SpringCloud组件

谷粒商城-SpringCloud组件

第164天学习打卡(项目 谷粒商城6 加载多配置集 API网关)

商城项目04_SpringCloud Alibaba概述Nacos作为注册配置中心声明式远程调用Feign

第163天学习打卡(项目 谷粒商城5 SpringCloud Alibaba Feign Nacos)

谷粒商城-分布式基础项目环境搭建