intellij idea - Hot Swapping Webapp Files -
i running application in production mode (war not exploded) on glassfish server , want know if it's possible hot swap front end files?
currently when hot swap, in backend (it being java). possible files under webapp directory?
the run/debug configuration
window glassfish-within-intellij supports hot deployment:
for exploded artifacts, available options are:
update resources. changed resources updated (html, jsp, javascript, css , image files).
update classes , resources. changed resources updated; changed java classes (ejbs, servlets, etc.) recompiled.
etc
looks need choose update resources
option.
more details in docs.
update 1: packed (i.e. unexploded) artifacts available options are:
hot swap classes. changed classes recompiled , reloaded @ runtime. option works in debug mode.
redeploy. application artifact rebuilt , redeployed.
restart server. server restarted. application artifact rebuilt , redeployed.
there no support hot deploying 'front end files' in unexploded artifact.
Comments
Post a Comment