deployment - Conviniend Re-Deploy Application on Glassfish Server -
in moment best way redeploy application our glassfish servers is:
- stop domain (so don't lots of exceptions because querys comming in while redeploy)
- remove application domain folder
- start domain
- deploy compelete application
is there s.t. miss make process less time consuming.
thanks hasan
you should able use netbeans integrated hot-deployment deploy faster. netbeans detects files have changed , copies these deployment folder.
to enable explicitly (it should enabled default):
- go project -> properties -> build -> run
- enable "deploy on save"
make sure have following in web.xml
:
<context-param> <param-name>javax.faces.project_stage</param-name> <param-value>development</param-value> </context-param>
you can ignore exceptions on redeployment.
another option checkout jrebel.