Hachixxxx

Results 3 issues of Hachixxxx

文档链接:[配置加载流程](http://dubbo.apache.org/zh-cn/docs/user/configuration/configuration-load-process.html) 原文中 ``` dubbo.application.parameters.item1=value1 dubbo.application.parameters.item2=value2 ``` 会绑定到 `ApplicationConfig`的`Map`中。 然而,个人在测试时遇到`spring-beans: 5.2.2.RELEASE`中,基于此语法无法成功绑定,正确的语法: ``` dubbo.application.parameters[item1]=value1 dubbo.application.parameters[item2]=value2 ```

spring-boot: `2.7.18` nacos-config-spring-boot-autoconfigure: `0.2.12` ### 问题描述 `application.properties` 配置示例: ``` nacos.config.data-id=com.xxx.properties nacos.config.group=GROUP_XXX nacos.config.type=properties ``` 当使用 `@SpringBootTest` 进行单元测试时,存在例如 `@SpyBean` 或者 `@MockBean` 时,会多次创建 `spring.context`(对应多个 `spring.environment`)。(参考:https://github.com/spring-projects/spring-boot/issues/34768) 但是,只有 **第1次**创建的 `spring.context` 中可以获取 `com.xxx.properties`中配置的属性。 **第2+次**创建的`spring.context` 中都无法正确获取`com.xxx.properties`中的属性。 ###...

### Pre-check - [x] I am sure that all the content I provide is in English. ### Search before asking - [x] I had searched in the [issues](https://github.com/apache/dubbo/issues?q=is%3Aissue) and found...

type/bug
help wanted