当application.yml配置文件配置如下时,会出现无法正常读取dubbo.scan.base-packages属性:
```
dubbo:
scan:
base-packages:
- com.tft.account.core.service
```
因为在此情况下,以下代码无法准确判断条件是否满足:
```
@ConditionalOnProperty(
prefix = "dubbo.scan.",
name = {"base-packages"}
)
```
此次PR增加读取dubbo.scan.base-packages[0]属性的罗辑,当二者满足其一则正常加载该配置。
[ Full content available at:
https://github.com/apache/dubbo-spring-boot-project/pull/659 ]
This message was relayed via gitbox.apache.org for
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]