The short answer is everything is already loaded only on an as-needed basis.
Nothing is added to the runtime -- regardless of what jars are on disk -- unless you add them explicitly or implicitly. Explicitly: - You have declared the CMP, JMS, MDB etc container in your tomee.xml Implicitly: - You did not declare anything explicitly in configuration, but you did deploy an application that requires CMP, JMS, MDB. In this case we will virtually add the required config so the right things are loaded and log that so you are aware. You can disable the implicit behavior by setting `tomee.autoconfig` to `false` in `conf/system.properties` or as a plain -D jvm system property. -- David Blevins http://twitter.com/dblevins http://www.tomitribe.com On Jan 28, 2015, at 5:44 AM, Massimiliano Maggiari <[email protected]> wrote: > Hi guys, is there a way to mimic JBoss modules in Tommy? > Thanks > Max >
