You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
If a configuration property, in particular
conferences.file
, is specified internally and externally (cf. https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html) both values are used. Unfortunately the internal one beats the external one in this case.Given the following scenario:
The bundled
application.properties
file contains the property with valueconferences.file=conferences-dev.yml
, andthere is an external file
/opt/dukecon/config/application.properties
with valueconferences.file=/opt/dukecon/config/conferences.yml
,and
/opt/dukecon/config
specified as Spring config location (e.g.--spring.config.location=/opt/dukecon/config
).Now the application behaves the following way:
/opt/dukecon/config/conferences.yml
and initializes the conference list with the data,conferences-dev.yml
.Finally only the conferences from the latter file are contained in the application.
The text was updated successfully, but these errors were encountered: