Python 官方文档:入门教程 => 点击学习
目录1. Nacos介绍2. Docker安装Nacos2.1 docker-compose.yaml2.2 启动后访问控制台3.SpringBoot集成Nacos3.1 pom依赖
eureka注册中心
官网说明:Nacos 致力于帮助您发现、配置和管理微服务。Nacos 提供了一组简单易用的特性集,帮助您快速实现动态服务发现、服务配置、服务元数据及流量管理。
基于liunx Centos7,镜像nacos/nacos-server:v2.1.0
version: '3.7'
services:
nacos01:
image: nacos/nacos-server:v2.1.0
container_name: nacos01
# restart: always
ports:
- "8848:8848"
environment:
- TZ=Asia/Shanghai
- MODE=standalone
- JVM_XMS=128m
- JVM_XMX=512M
networks:
- my-net
networks:
#新增的网络 内部服务名调用
my-net:
external: true
如果需要配置本地数据库的可以参考这篇文章
访问Http://192.168.0.221:8848/nacos/
,账号密码都是nacos
添加一个orderservice-dev.yaml配置,内容如下。
接下来在springboot中集成Nacos
父依赖
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.8</version>
</parent>
SpringCloud版本管理包
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2021.0.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
nacos配置依赖
<!--引入cloud config-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<!--引入nacos config依赖-->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
<version>2021.0.1.0</version>
</dependency>
<!--cloud2021.x版本后 不在支持bootstrap No spring.config.import set-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
一定要注意依赖,不然很多问题
特别注意加载配置文件的顺序 bootstrap -> application
,所以不要在application.yml
写任何配置,不存在最好。新建一个bootstrap.yml
spring:
application:
#这个名词需要和nacos配置的一致
name: orderservice
profiles:
#指定环境
active: dev
cloud:
#不使用默认的config 使用nacos
config:
enabled: false
nacos:
config:
server-addr: 192.168.0.221:8848
file-extension: yaml
接下来从启动日志看下读取配置的规则:
Ignore the empty nacos configuration and get it based on dataId[orderservice] & group[DEFAULT_GROUP]
Ignore the empty nacos configuration and get it based on dataId[orderservice.yaml] & group[DEFAULT_GROUP]
Located property source: [BootstrapPropertySource {name='bootstrapProperties-orderservice-dev.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-orderservice.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-orderservice,DEFAULT_GROUP'}]
properties
后缀)最优先,orderservice.${file-extension}
orderservice-${spring.profiles.active}.${file-extension}
//开启配置动态刷新
@RefreshScope
@Slf4j
@RestController
public class OrderController {
@Value("${hello.world}")
private String hello;
@GetMapping("/test")
public String test() throws Exception {
log.info("config -- {}", hello);
return hello;
}
}
c.e.order.controller.OrderController : config -- 1345671234567887654
//修改为jack再次访问
c.e.order.controller.OrderController : config -- hello my name is jack
到此这篇关于SprinGCloud安装Nacos完成配置中心的文章就介绍到这了,更多相关SpringCloud Nacos配置中心内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: SpringCloud安装Nacos完成配置中心
本文链接: https://lsjlt.com/news/154158.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0