@NacosConfigurationProperties cannot get the value in the extConfig configuration file, but can only get the value in the shared configuration
I hope it can get the value in extConfig
Describe what happened (or what feature you want)
@NacosConfigurationProperties cannot get the value in the extConfig configuration file, but can only get the value in the shared configuration
Describe what you expected to happen
I hope @NacosConfigurationProperties can get the value in extConfig
How to reproduce it (as minimally and precisely as possible)
shareConfig and extConfig, extConfig have one properties : you.name=lucas ,
use @NacosConfigurationProperties
@Data
@Component
@NacosConfigurationProperties(
groupId = "${nacos.config.group}",
dataId = "${nacos.config.data-id}",
prefix = "you",
type = ConfigType.PROPERTIES,
autoRefreshed = true)
public class Name {
private String name;
}
Name cannot get the value of the corresponding Nacos
Issue Description
Type: feature request
@NacosConfigurationProperties
cannot get the value in theextConfig
configuration file, but can only get the value in the shared configuration I hope it can get the value in extConfigDescribe what happened (or what feature you want)
@NacosConfigurationProperties
cannot get the value in theextConfig
configuration file, but can only get the value in the shared configurationDescribe what you expected to happen
I hope
@NacosConfigurationProperties
can get the value in extConfigHow to reproduce it (as minimally and precisely as possible)
@NacosConfigurationProperties
Tell us your environment
dev local
Anything else we need to know?
No