|
From: hengels <do-...@jb...> - 2006-07-06 13:10:29
|
Hm, are we solving the class compatibility problems with dependent deployment units, then? Consider two deployment units: A and B, where B depends on A. B holds references to classes from A. Now A gets redeployed -> A2. You'll notice, that B is invalid, cause it still references instances of old A's classloader. You're getting ClassCastExceptions. B has to be redeployed -> B2. B2 will create new instances of A2's new classes. Holger View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955839#3955839 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955839 |