I have a Spring Boot application. I want to add some custom properties.
Is it good practice to put these properties into the default application.properties
/application.yaml
file?
Or is it better to put them in a new properties file and keep only Spring properties in application.properties
/application.yaml
?