Scott C.
Scott C.

Reputation: 3842

Does spring boot support using both properties and yml files at the same time?

I have a spring boot application and I want to use both a yml file for my application properties and also a plain application-${profile}.properties file set to configure my application.

So my question is can this be done and if so, how do you configure spring boot to look for both the yml file and the properties and merge them into one set per environment?

As to why I want/need to use both, it is because I like the flexibility and ease of use of yml files but an internal component (for encryption) requires using the properties file set.

I did see this point being made YAML files can’t be loaded via the @PropertySource annotation

but nothing stating whether both can be used together.

Please provide detailed configuration (XML or Java config) on how to get this working.

TIA,

Scott

Upvotes: 57

Views: 43710

Answers (3)

Gowri Sundar
Gowri Sundar

Reputation: 719

Yes You can use both at same time in same project.

  • When you use both YML and properties at same time, say for example
    application.yml and application.properties at same time in same
    project, first application.yml will be loaded, later
    application.properties will be loaded
    .
  • Important point to be noted is that if application.yml and application.properties have same keys for example in application.yml has spring.app.name = testYML and application.properties has spring.app.name = testProperties at same time in same project, then application.yml value will be overwritten by application.properties value since it is loading at last.
  • And the value in spring.app.name = testProperties.

Upvotes: 54

Scott C.
Scott C.

Reputation: 3842

I can answer my own question, as it just works as you would expect. The application.yml file and the appropriate application-${profile}.properties both get loaded and merged into the environment. Spring boot just makes this work naturally.

Upvotes: 71

Akshay Pethani
Akshay Pethani

Reputation: 2570

Yes, you can run both without doing any configuration.

In Spring Boot, it picks .properties or .yaml files in the following sequences :

  1. application-{profile}.{properties|yml}

  2. application.{properties|yml}

Upvotes: 11

Related Questions