我有一段扫描Spring上下文的代码:
public void scan() {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
context.register(SomeConfig.class);
context.refresh();
}
我需要从应用程序读取属性。yml
文件,所以在SomeConfig
类中,我有:
@Configuration
@PropertySource(value = "classpath:application.yml", factory = YamlPropertyLoaderFactory.class)
public class SomeConfig {
//some beans
}
(我从这里复制了YamlProperty tyLoaderFactory类)
application.yml
是一个典型的Spring Boot文件,其中包含一些配置文件属性和默认配置文件:
spring:
profiles:
active: p1
---
spring:
profiles: p1
file: file1.txt
---
spring:
profiles: p2
file: file2.txt
在某些bean中,我使用@Value
读取文件
属性。
当我运行我的应用程序,我传递-Dspring.profiles.active=p1
变量,但我得到一个错误:
无法解析值“${file}”中的占位符“file”
(由于application.yml的默认配置文件设置为p1,即使我没有通过任何配置文件,它也应该可以工作)
如果我从应用程序中删除所有配置文件。yml
,工作正常:
file: file1.txt
因此,这意味着上下文扫描没有读取profile变量。
此外,如果我“以编程方式”设置活动配置文件,它也不会解析属性:
context.getEnvironment().setActiveProfiles("p1");
若要仅为特定配置文件设置属性,正确的缩进是:
spring:
profiles: p1
file: file1.txt
在上述情况下,您可以访问file1。txt
与${spring.file}
EL。
@pcoates我尝试使用更新版本的YamlPropertySourceLoader,但仍然无法加载配置文件。
始终在以下条件下失败,源返回2个元素,但没有源“spring.profiles.active”,
if(检查ource.contains属性(spring.profiles.active))
下面是我的yaml和yaml属性加载器的配置
profiles: dev
excelPath : /data/excel
excecutionPath: http://localhost:8080/server/execute
memberIP: localhost
profilerPortNum: 3031
---
spring:
profiles: uat
excelPath : /data/uat/excel
excecutionPath: http://localhost:8080/server/execute
memberIP: localhost
profilerPortNum: 3032```
@Configuration
@PropertySource(value = "classpath:application.yml", factory = YamlPropertyLoaderFactory.class)
public class ReadYamlProperties {
}
您所指的YamlPropertyLoaderFactory
具有以下代码:
public class YamlPropertyLoaderFactory extends DefaultPropertySourceFactory {
@Override
public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
if (resource == null){
return super.createPropertySource(name, resource);
}
return new YamlPropertySourceLoader().load(resource.getResource().getFilename(), resource.getResource(), null);
}
}
YamlPropertySourceLoader的第三个参数。load()
方法实际上是您希望属性用于的配置文件名。当这个示例传入null时,它只返回yml文件中的属性集,而不是特定概要文件的属性集。
即
spring:
profiles:
active: p1
---
我认为在YamlPropertyLoaderFactory
中查找活动的配置文件名并不容易,尽管您可以尝试以下方法:。。。
public class YamlPropertyLoaderFactory extends DefaultPropertySourceFactory {
@Override
public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
if (resource == null){
return super.createPropertySource(name, resource);
}
String activeProfile = System.getProperty("spring.profiles.active");
return new YamlPropertySourceLoader().load(resource.getResource().getFilename(), resource.getResource(), activeProfile);
}
}
或者当你在yml文件中有活动的配置文件名时,你可以用null调用YamlProperty tySourceLoader(). load
来获取spring.profiles.active属性,然后再次调用它来加载你想要的yml文件的实际部分。
public class YamlPropertyLoaderFactory extends DefaultPropertySourceFactory {
@Override
public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
if (resource == null){
return super.createPropertySource(name, resource);
}
PropertySource<?> source = new YamlPropertySourceLoader().load(resource.getResource().getFilename(), resource.getResource(), null);
String activeProfile = source.getProperty("spring.profiles.active");
return new YamlPropertySourceLoader().load(resource.getResource().getFilename(), resource.getResource(), activeProfile);
}
}
YamlPropertySourceLoader
于2018年2月更改(Git repo中的YamlPropertySourceLoader非责任视图)。它现在返回propertySource列表,并且在load方法上没有第三个参数。
只要你有Spring。个人资料。在yml文件中的active属性使用较新版本的YamlPropertySourceLoader
public class YamlPropertyLoaderFactory extends DefaultPropertySourceFactory {
@Override
public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
if (resource == null){
return super.createPropertySource(name, resource);
}
List<PropertySource<?>> sources = new YamlPropertySourceLoader().load(resource.getResource().getFilename(), resource.getResource());
for (PropertySource<?> checkSource : sources) {
if (checkSource.containsProperty("spring.profiles.active")) {
String activeProfile = (String) checkSource.getProperty("spring.profiles.active");
for (PropertySource<?> source : sources) {
if (activeProfile.trim().equals(source.getProperty("spring.profiles"))) {
return source;
}
}
}
}
return sources.get(0);
}
}
我不知道为什么,但dom4j不加载xmlns属性,如: xmlns=”http://webservices.example.com/servicesplatform/command/1.0.0“xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance" 其他属性通常会加载,但会被忽略。我使用属性迭代器检查所有元素的所有属性。 下面是我如何读取此xml
我是新的stackoverflow,但阅读吨的帖子在这里和现在stuck.myapplication.properties阅读,但配置hikaricp的部分被忽略/没有影响。 我读了https://www.javadevjournal.com/spring-boot/spring-boot-hikari/,在那里遵循了这些步骤,仍然取得了任何成功。 波姆。xml 应用属性 黑名单申请。课程: 配置
我有一个spring Boot2应用程序,有两个属性文件: application.properties application-dev.properties 当我在IntellijIdea中使用dev概要文件运行应用程序时,Spring会读取特定于概要文件的文件和默认文件。
为了能够测试应用程序的某些方面,我创建了这个测试设置。因为我需要的自定义实现,所以无法使用经典的注释来完成,而是使用了以下initialisazion: 所敬畏的SaveMetestApplication: 是一个将某些配置和必需的bean结合在一起的配置: 然后是引用的,其中有两个bean是自动连线的: 自动连线的两个bean是在导入的中定义的。当我使用启动测试时,我得到了实际找到的bean的日
我是springboot的新手,我正在尝试从application.properties文件的位置(src/main/resources)读取属性值。但它总是返回NULL。我也需要帮助。附加类和属性文件。请注意:我试过“https://www.baeldung.com/properties-with-spring”如何访问Spring Boot中application.properties文件中定
我正在将一个非常基本的web应用程序部署到Google应用程序引擎。我使用的是Springboot,我可以在本地很好地运行应用程序,但当我部署到Google时,应用程序引擎不会启动实例。我在启动时配置了一个云SQL数据源。 我有云sql配置属性配置src/main/Resources/application.properties.App Engine似乎找不到这些属性,所以它无法正确设置Cloud