Nacos definition
Nacos is alibaba's latest open source project, and its core positioning is "a dynamic service discovery, configuration and service management platform that can help build cloud native applications more easilyCopy the code
Nacos practice
Goal 1: Test a service registration with NACOS
1. Create an empty project: nacos and change the parent version of the POM file to version 2.0
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> . < version > 2.0.0 RELEASE < / version > < / parent >Copy the code