In the moment the best way to redeploy an application to our glassfish servers is:
Is there s.t. I miss that would make the process less time consuming.
Thanks Hasan
You should be able to use NetBeans integrated hot-deployment to deploy faster. NetBeans detects the files that have changed and copies only these to the deployment folder.
To enable explicitly (it should be enabled by default):
Make sure you have the following in your web.xml
:
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
You can ignore the exceptions on redeployment.
Another option would be to checkout JRebel.