RCS file:
/cvsroot/jboss/jboss/src/main/org/jboss/web/AbstractWebContainer.java,v
retrieving revision 1.20
diff -r1.20 AbstractWebContainer.java
248c248
< catch (Exception ignored) {throw new DeploymentException(ignored.getMessage());}
---
> catch (Exception ignored) {log.warn("Could not extract web inf classes",ignored); return;}
retrieving revision 1.20
diff -r1.20 AbstractWebContainer.java
248c248
< catch (Exception ignored) {throw new DeploymentException(ignored.getMessage());}
---
> catch (Exception ignored) {log.warn("Could not extract web inf classes",ignored); return;}
I don't understand this patch but I
will do it, its ok
The second patch splits the current MainDeployer.deploy(DeploymentInfo) method into two phases. A first phase that just creates classloaders and registers the deployment and a second phase that performs the actual deploy at the target deployers. This ensures that, e.g., if you have an ear consisting of an ejb-jar and a
Deploy is ALREADY split into two phases init and deploy. It was done for the ear. Can you make sure you can't fit your stuff in Init/start as opposed to going to a 3 phase creation?
marcf
