转 Nacos集群环境搭建
摘要:转载 送上nacos-server-1.1.3 链接:https://pan.baidu.com/s/11r3OeffHN8AwKLurmmzJmg 密码:wdu2 下载↓↓↓↓ https://github.com/alibaba/nacos/releases 单机版 单机版主要为了测试,没啥意思
阅读全文
nacos 动态刷新@ConfigurationProperties
摘要:使用@ConfigurationProperties 可以替换@value nacos 配置文件yaml中添加 添加pom.xml config.java
阅读全文
springcloud 配置actuator
摘要:pom.xml 调用接口 http://127.0.0.1:9092/test/hi 返回 55555 修改config端 name.str:6666 刷新接口 http://127.0.0.1:9092/actuator/refresh 返回 [ "config.client.version",
阅读全文
搭建Eureka注册中心
摘要:创建一个Spring Boot工程,命名为eureka-server,并在pom.xml中引入必要的依赖,代码如下。 二 通过@EnableEurekaServer注解启动一个服务注册中心提供给其他应用程序进行对话,只需要在Spring Boot应用中添加下面这个注解就能开启此功能。 三 在默认情况
阅读全文