How can I pass MP config property file to OL on the command line? The wlp/bin/server.bat does not allow to pass even Java system properties...
I have looked at the OL MP config example and it assumes that the configuration is in the user user.home system property - not very useful.
I read the various WS Liberty docs and they require me to configure in XML the location where the property file is - also not very flexible. Other options involve using environment variables - not what I want.
What I want is something as flexible as:
bin/server.bat -Dmy.conig=c:/temp/myconfig.properties
This example above is similar to how Spring/SpringBoot does it. Thanks!