Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

These are placeholders until more detail is entered ...

  • Wiki Markup
    Move any shared jars from your webapp into $\{catalina.home\}/shared/lib \[FasterStartUpShareJars\]
    \\
  • Get a faster computer (ha ha ha)
  • Make sure your code is not doing slow things. (Use a profiler) 
  • Remove any jar files you don't need. When searching for classes every JAR file needs to be examined to find the needed class. Also during webapp startup, jar files are searched for TLD files. If the jar file is not there - there is nothing to search.
  • Remove any webapps you don't need. (So remove the all the webapps installed with tomcat)
  • Tweak memory parameters - Google is your friend.
  • Trim the config files as much as possible. XML parsing is not cheap. The less there is to parse - the faster things will go.