gpt4 book ai didi

java - Spring Boot 使用 Yaml 而不是属性文件

转载 作者:行者123 更新时间:2023-12-02 17:17:11 26 4
gpt4 key购买 nike

我使用 Spring Boot。我想使用 YAML 而不是属性来编写配置。

由于我使用 spring-boot-starter,SnakeYAML 库已经在类路径中,SpringApplication 应该自动使用 YAML 版本。

The SpringApplication class will automatically support YAML as an alternative to properties whenever you have the SnakeYAML library on your classpath.

问题是应用程序继续使用 application.properties 文件,如果我删除它,则根本不会加载任何配置。

有人可以帮助我吗?这是我的主文件

@SpringBootApplication
public class App {


public static void main(String[] args) throws Exception {
SpringApplication app = new SpringApplication(App.class);
app.setBannerMode(Banner.Mode.OFF);
app.run(args);
}
}

这是我的pom.xml

....
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
</parent>

<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

application.yml 文件只是

tasks: 231232

我尝试使用注入(inject)的环境读取属性

     @Autowired
private Environment environment;

....

log.info(environment.getProperty("tasks"));

我的错误在哪里?

最佳答案

我解决了添加的问题

<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.16</version>

到我的 pom.xml 文件。注意 1.16,spring-boot-starter-parent 导入 1.17

我打开一个问题 https://github.com/spring-projects/spring-boot/issues/6878

关于java - Spring Boot 使用 Yaml 而不是属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39474133/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com