Spring引用使用Yaml而不是属性文件

时间:2016-09-13 15:45:36

标签: java spring spring-boot yaml

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

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

  

SpringApplication类将自动支持YAML   只要有SnakeYAML库,就可以替代属性   你的类路径。

问题是应用程序继续使用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

我尝试使用注入的环境

读取属性
     @Autowired
      private  Environment environment;

....

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

我的错误在哪里?

8 个答案:

答案 0 :(得分:3)

我解决了添加

的问题
<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

答案 1 :(得分:1)

您是否在tasks:之后添加了空格确保在冒号(:)之后添加空格。 yml indention也起着至关重要的作用

tasks: 123

Here a syntax page

答案 2 :(得分:1)

问题很简单,我的本地存储库中的snakeyaml 1.7 jar已损坏。可能是在运行时没有加载类。

我在构建时没有收到任何错误,而不是在运行时误导我。

答案 3 :(得分:0)

在主类

中使用ConfigurationProperties批注
@SpringBootApplication
@ConfigurationProperties
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);
    }
}

答案 4 :(得分:0)

如果指定版本存在冲突,则可以使用此方法删除该版本。

<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&callback=initMap">
</script>

答案 5 :(得分:0)

更新:

Spring Boot 2将snakeyaml作为其任何模块的可传递运行时依赖项。

enter image description here

答案 6 :(得分:0)

我使用的是 gradle ......在我的build.gradle(应用级别)中添加了没有版本名称的此依赖项,并且对我来说效果很好: >

implementation ('org.yaml:snakeyaml') 

答案 7 :(得分:-5)

问题似乎与您的yml文件

有关
tasks:231232 

应该是

tasks: 231232