I checked out the source code of open liberty from https://github.com/OpenLiberty/open-liberty and was wondering how to start the server from the sources and deploy an application to the started server.
I found several classes with a main method, but none of them are looking promising so far. My goal is to debug the source code of the open liberty server with a deployed application.
How can I achieve this?
To debug a Liberty server you can do the following steps:
wlp/bin/server debug myServer
. This will halt the server launch process until a debugger is attached on the default debugging port (7777)