I'd like to avoid cluttering the application.properties
file with lots of things than, in my opinion, would be better in a separate file.
application.properties
should be something like
@include module1.properties
@include module1.properties
...
###################################
######### Spring Misc #############
###################################
# Direct log to a log file
logging.file=/tmp/kmp-manager.log
#local listening port
server.port=8082
spring.profiles=nr_dev nr_testing production
spring.profiles.active=production
spring.datasource.platform=postgresql
java.security.egd=file:/dev/./urandom
Is this at all possibile? If not, what would be a sane way to avoid cluttering?