We are using WebLogic 12c.
We recently noticed that all of our teams/projects don't have their local development servers/environments using Eclipse's WLS Server Adapter Tools set to support hot-deployment of resources, that is CSS, JavaScript etc. files.
The following is set in every web.xml:
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
This makes Eclipse save XHTML files on Ctrl+S and push them to the server's deployment dir immediately (new timestamp).
However, this doesn't happen with CSS + JavaScript etc. files for some reason.
So, technically, something in Eclipse or the WLS Server Tools is capable of doing so, but only for XHTML files.
QUESTION:
How can we make WLS 12c hotdeploy CSS + JS and not only XHTML files?
Thanks
Karsten