Hi folks! A quick note about getting tomee a bit faster in big real world scenarios.
Tomcat 7.0.23 introduced a parallel start feature. Please change to the following in your conf/server.xml: <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" startStopThreads="4"> The startStopThreads will cause parallel boot and shutdown. Massively cutting down boot time if you have multiple webapps. LieGrue, strub