I have installed openLiberty 20.0.0 and I want to activate hotdeployment. For that I added the applicationMonitor tag into the server.xml
<applicationMonitor updateTrigger="polled" pollingRate="500ms"
dropins="dropins" dropinsEnabled="true"/>
But these seems to be the defaults already. So maybe I can leave it.
I also added the autoExpand feature
<applicationManager autoExpand="true" />
Now when I deploy a .war file into the dropins folder the application is automatically recognized by openLiberty and deployed immediately. This is fine so far.
But as I understood, also a hotdeploy of single source files (e.g. .html, .xhtml.) should be recognized and updated in my running application without the need of a full redeployment.
If I change for example a single jsf file within the application folder
./dropins/myapplication.war/my-page.jsf
nothing happens. What did I miss to let OpenLiberty also recognize this minor file changes?