redeploy

Tomcat on production server, PermGen and redeploys

It looks like MemoryError: PermGen space java.lang.OutOfMemoryError: PermGen space is a common problem. You can Increase the size of your perm space, but after 100 or 200 redeploys it will be full. Tracking ClassLoader memory leaks is nearly impossible. What are your methods for Tomcat (or another simple servlet container - Jetty...

Redeploy tree on Glassfish 3.0.1

I use Netbeans 6.9.1 and Glassfish 3.0.1. I have this model: EnterpriseApplicationA contains EJBmoduleA and the BeanA that exposes a remote interface. EnterpriseApplicationB contains EJBmoduleB and the BeanB. The BeanB calls the BeanA using @EJB injection. All is working, but if I made a trivial change in a business method of BeanA (...