SpringBoot1.x集成nacos的方案


目录

1. 在pom.xml中添加依赖

<!-- nacos 配置管理 -->
<dependency>
    <groupId>com.alibaba.boot</groupId>
    <artifactId>nacos-config-spring-boot-starter</artifactId>
    <version>0.1.7</version>
</dependency>

2. 添加application.yml

spring:
  application:
    name: hwboot # nacos服务名
  profiles:
    active: dev
# ======================== ↓↓↓↓↓↓ nacos相关配置 ↓↓↓↓↓↓ ===============================
nacos:
  # 配置管理
  config:
    server-addr: localhost:8848 # TODO 这里换成自己的ip加端口


3. 在启动器类中添加注解 @NacosPropertySource 可以改动配置

SpringBoot1.x集成nacos的方案

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)
// 使用 @NacosPropertySource 加载 `dataId` 为 `application.yml` 的配置源,并开启自动更新
@NacosPropertySource(dataId = "${spring.application.name}-${spring.profiles.active}.yml", autoRefreshed = true,type = ConfigType.YAML)

注:@NacosPropertySource(dataId = “${spring.application.name}-${spring.profiles.active}.yml”, autoRefreshed = true,type = ConfigType.YAML)

4. 添加控制器

import com.alibaba.nacos.api.config.annotation.NacosValue;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @NacosValue(value = "${helloworld:HelloWorld}", autoRefreshed = true)
    private String hello;

    @GetMapping("/hello")
    public String hello() {
        return hello;
    }

}

5. 在浏览器中输入localhost:8848/nacos 官方默认的账号和密码都是nacos

SpringBoot1.x集成nacos的方案

6. 最终的配置成功的效果

SpringBoot1.x集成nacos的方案

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/244572.html

(0)
上一篇 2022年4月17日
下一篇 2022年4月17日

相关推荐

发表回复

登录后才能评论