I have jdbc property files which I take from external configuration web-service In spring boot in order to set mysql props it\'s easy as adding those to application.properti
With this Method in your configuration you can set default properties.
@Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(Application.class) .properties("propertyKey=propertyValue"); }