This topic explains how to use nacos-config-spring-boot-starter.
Get the Starter
To get the nacos-config-spring-boot-starter, add the following configuration to the pom.xml file in the Maven project.
<dependency>
<groupId>com.alibaba.boot</groupId>
<artifactId>nacos-config-spring-boot-starter</artifactId>
<version>${latest.version}</version>
</dependency>
Example
-
Configure the connection in application.properties.
# The value of endpoint and namespace can be found in namespace details. nacos.config.endpoint=${endpoint} nacos.config.namespace=${namespace} # We recommend that you use the accessKey and secretKey of the RAM account nacos.config.access-key=${accessKey} nacos.config.secret-key=${secretKey}
-
Use
@NacosPropertySource
to load the configuration source with thedataId
ofcom.alibaba.nacos.example
, and turn on automatic update.@SpringBootApplication @NacosPropertySource(dataId = "com.alibaba.nacos.example", autoRefreshed = true) public class NacosConfigApplication { public static void main(String[] args) { SpringApplication.run(NacosConfigApplication.class, args); } }
-
Set the value of the properties with the @NacosValue annotation of Nacos.
@Controller @RequestMapping("config") public class ConfigController { @NacosValue("${connectTimeoutInMills:5000}", autoRefreshed = true) private int connectTimeoutInMills; @RequestMapping(value = "/get", method = GET) @ResponseBody public int get() { return connectTimeoutInMills; } }
-
Open the ACM console and create a new configuration under the corresponding namespace.
-
Data ID:
com.alibaba.nacos.example
-
Select
Properties
for the configuration format, and put the specific key-value pairs in the configuration body:connectTimeoutInMills=3000
For the complete sample code, see nacos-spring-boot-config-example.
-