This content has been marked as final.
Show 2 replies
-
1. Re: Static modules management in JBoss EAP 6
Tomaz Cerar Apr 17, 2014 9:54 AM (in response to Nicolas Nicolas)Hey,
this should work fine, as all modules are lazy loaded.
which means sever will try to load them only when they are first requested.
that would mean that if you would modify resources of one module that was already loaded it would not work as new resources would not be taken into account.
but if you add new module under different slot as you did, it will work.
--
tomaz
-
2. Re: Static modules management in JBoss EAP 6
Nicolas Nicolas Apr 17, 2014 10:14 AM (in response to Tomaz Cerar)Thanks Tomaz,
It's what I understood too.