
StaticProperties.class @Component
public class StaticProperties {
public static String CUSTOM_NAME;
@Value("${custom.name}")
public void setCustomName(String customName) {
CUSTOM_NAME = customName;
}
}resources/META-INF/spring-configuration-metadata.json {
"properties": [
{
"name": "custom.name",
"type": "java.lang.String",
"sourceType": "com.anoyi.xxx.config.StaticProperties"
}
]
}application.properties custom.name=anoyi至此,即可在 Spring Boot 全局任意引用 StaticProperties.CUSTOM_NAME