Springboot接入nacos配置中心

闲话不多说,上代码。

1. 添加Nacos依赖

<dependency>
    <groupId>com.alibaba.boot</groupId>
    <artifactId>nacos-config-spring-boot-starter</artifactId>
    <version>0.2.1</version>
</dependency>

2. 配置Nacos连接信息

application.propertiesapplication.yml文件中配置Nacos连接信息,包括Nacos服务器的地址、端口、命名空间等

# Nacos配置中心地址
spring.cloud.nacos.config.server-addr=127.0.0.1:8848
# Nacos命名空间
spring.cloud.nacos.config.namespace=

3. 启用Nacos配置中心

在Spring Boot的启动类上添加@EnableNacosConfig注解,启用Nacos配置中心的功能

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import com.alibaba.nacos.spring.context.annotation.config.EnableNacosConfig;

@SpringBootApplication
@EnableNacosConfig
public class YourApplication {
    public static void main(String[] args) {
        SpringApplication.run(YourApplication.class, args);
    }
}

4. 使用Nacos配置

使用@Value注解来获取Nacos配置中心的配置项

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class YourComponent {
    @Value("${your.property.key}")
    private String yourProperty;

    // ...
}

使用@ConfigurationProperties注解来获取Nacos配置中心的配置项

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class YourComponent {
    @Value("${your.property.key}")
    private String yourProperty;

    // ...
}

使用@NacosConfigurationProperties注解来绑定整个配置类

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component;
import com.alibaba.nacos.api.config.annotation.NacosConfigurationProperties;

@Component
@RefreshScope
@NacosConfigurationProperties(dataId = "your-data-id", groupId = "your-group-id", autoRefreshed = true)
public class YourConfig {
    // ...
}

5. 加载配置信息的方式

5.1 指定dataIdgroupId,你可以精确地获取对应配置项的值,例如,在application.propertiesapplication.yml中配置了以下内容

your.data.id = your-data-id
your.group.id = your-group-id

5.2 使用命名空间

5.3 使用@NacosValue注解

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值