spring boot接入nacos 配置中心
要在Spring Boot应用中接入Nacos配置中心,你需要做以下几步:
- 在
pom.xml
中添加Nacos客户端依赖:
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
- 在
application.properties
或application.yml
中配置Nacos服务器地址和应用名:
# application.properties
spring.cloud.nacos.config.server-addr=127.0.0.1:8848
spring.application.name=my-spring-boot-app
或者使用YAML格式:
# application.yml
spring:
cloud:
nacos:
config:
server-addr: 127.0.0.1:8848
application:
name: my-spring-boot-app
- 在代码中使用
@Value
注解或者@ConfigurationProperties
注解来获取配置:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ConfigController {
@Value("${my.config}")
private String myConfig;
@GetMapping("/config")
public String getConfig() {
return myConfig;
}
}
或者使用配置类:
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "my")
public class MyConfigProperties {
private String config;
// getter and setter
}
- 启动你的Spring Boot应用,它会自动从Nacos配置中心拉取配置并注册监听。
确保Nacos服务器正常运行,并且配置数据已经发布到Nacos配置中心。Spring Boot应用会在启动时从Nacos拉取配置并注册监听器,一旦配置发生变化,会自动更新配置。
评论已关闭