nacos-spring-boot-project icon indicating copy to clipboard operation
nacos-spring-boot-project copied to clipboard

Nacos ECO Project for Spring Boot

Results 103 nacos-spring-boot-project issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/15828159/83093039-471e5280-a0d1-11ea-8066-9eb63f219038.png) ![image](https://user-images.githubusercontent.com/15828159/83093062-51405100-a0d1-11ea-8090-b87eebfa889b.png) ![image](https://user-images.githubusercontent.com/15828159/83093073-54d3d800-a0d1-11ea-87d2-e0ce9c397a5c.png) ![image](https://user-images.githubusercontent.com/15828159/83093086-58fff580-a0d1-11ea-9d0f-cfbd42af165b.png) 只用nacos做配置中心,但是启动提示如下错误 java.lang.IllegalStateException: No application config found or it's not a valid config! Please add to your spring config. ![image](https://user-images.githubusercontent.com/15828159/83093331-d1ff4d00-a0d1-11ea-9fb5-63b0f9cea67b.png) 解决方法竟然是dubbo.application.name=xx 写两遍。。 ![image](https://user-images.githubusercontent.com/15828159/83093383-e80d0d80-a0d1-11ea-8af0-5b8985a1a020.png) 希望能解决这个bug,写两遍dubbo.application.name=xx 有点low啊 - -!

@ConfigurationProperties在nacos的springcloud不生效,需要引入nacos-config-spring-boot-starter依赖,因为对@ConfigurationProperties处理的NacosConfigurationPropertiesBinder这个类在springboot依赖中,这样导致了需要引入springcloud和springboot依赖,而springboot的配置方式和springcloud不一样,比如serveraddr就需要配置两次了

开发的项目springboot版本:2.1.1.RELEASE jdk版本:1.8.0_201 系统:windows 10 Service端 nacos版本:1.2.0 服务器版本说明: Linux version 3.10.0-229.el7.x86_64 ([email protected]) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-16) (GCC) ) #1 SMP Fri Mar 6 11:36:42 UTC 2015 # 开启权限验证...

https://github.com/alibaba/nacos/issues/2179

extConfig未配置的属性,继承主配置。在extConfig减少配置重复的基础参数

通过配置 nacos.config.remote-first=true, 使远程配置优先级高于本地 application.properties

1. 添加start之后没有默认配置, 直接启动报错。 2.以下配置当无配置时监听不到 `@NacosValue(value = "${config.center:config}",autoRefreshed = true) private String info; @GetMapping("/get") public String get(){ return info; }` 当nacos服务中不存在时,启动应用 是config,当配置config.center 变量时,会显示nacos服务中的配置。 当修改value值时会根据修改后的值变动(没问题),那么当去掉nacos服务中的key(config.center)时,则监听不到必须重启客户端来完成消除~~~ 3. shutdown.sh 命令太狠了,若nacos服务器中运行其它java服务时,使用shutdown.sh 命令时会把机器中的所有java 服务都给杀了。。 4.根据官方文档没有搭建成功集群模式(当然能启动集群模式),无法发现集群机器(提供了dns /vip...

# Description Nacos springboot cant pull the latest config from the config server # How to Reproduce there's a key named `version` in my application.properties, and I add it from...

bug
help wanted
priority/high