① 先启动nacos
② 创建一个SpringBoot项目,导入maven依赖:注意导入的版本与下面不同可能会有兼容性
<?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.1.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.yuan</groupId> <artifactId>nacos-config</artifactId> <version>0.0.1-SNAPSHOT</version> <name>nacos-config</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> <spring-cloud.version>Greenwich.SR2</spring-cloud.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter</artifactId> </dependency> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> <version>2.1.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-context</artifactId> <version>2.1.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </exclusion> </exclusions> </dependency> <!--<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency>--> <!--<dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.1</version> </dependency>--> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</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> </project>
为什么需要这个文件?
在springboot中有两种上下文配置文件,一种是bootstrop、另外一种是application。bootstrop是应用程序的父上下文,也就是说bootstrop的加载顺序优先于application。由于在加载远程配置之前,就需要知道Nacos(配置中心)的地址
信息。所有要把nacos服务的地址属性配置在bootstrop中。
在bootstrop中配置如下信息:
spring.application.name=spring-cloud-nacos-config spring.cloud.nacos.config.server-addr=127.0.0.1:8848 #配置了此项 会去nacos配置中心上读取dataid为example的配置内容 不会采用默认策略 spring.cloud.nacos.config.prefix=example #spring.cloud.nacos.config.prefix=example-yaml #指定配置文件类型为yaml格式 spring.cloud.nacos.config.file-extension=yaml #指定环境切换,,在没有配置spring.cloud.nacos.config.prefix 的情况下,会去nacos server # 上读取${spring.application.name}-${profile}-${file-extension}:properies}data-id的配置文件,如果没有${profile}则直接去掉, #中间的-也没有如:spring-cloud-nacos-config.yaml spring.profiles.active=dev #指定命名空间 需在nacos的控制台创建命名空间后,复制命名空间ID #spring.cloud.nacos.config.namespace= #指定group 不需要提价创建 只需要在新建配置的时候 和这里的值一样即可 #spring.cloud.nacos.config.group=
需要在nacos控制台的配置中心,创建一个dataid=example的配置项,group不改,默认就行,选择配置格式为yaml,配置的内容为
info: hello,naocs
@SpringBootApplication public class NacosConfigApplicationPP { public static void main(String[] args) throws InterruptedException { ConfigurableApplicationContext context = SpringApplication.run(NacosConfigApplicationPP.class, args); while (true){ //循环读取配置中心key为info的值,当修改了配置中心info的值 会输出相应的值 System.out.println(context.getEnvironment().getProperty("info")); Thread.sleep(5000); } } }