赞
踩
Nacos 是阿里巴巴开源的一个更易于构建云原生应用的动态服务发现、配置管理和服务管理平台。
下载官网地址:https://github.com/alibaba/nacos/releases
下载后解压后,bin目录下,CMD。
地址: http://localhost:8848/nacos/index.html#/login
<!-- Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
spring:
application:
name: short_link
cloud:
nacos:
discovery:
server-addr: 127.0.0.1:8848
@EnableDiscoveryClient
@EnableScheduling
@SpringBootApplication
//@EnableEurekaClient
@MapperScan("com.material_cloud.short_link.modules.mapper")
public class ShortLinkApplication {
public static void main(String[] args) {
SpringApplication.run(ShortLinkApplication.class,args);
}
}
地址:http://localhost:8848/nacos/index.html#/login
账号: nacos
密码: nacos
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。