I'm currently running my webapps on Tomcat 6 in production, and would like to evaluate running Tomcat in embedded mode.
Is there a good tutorial or other resource besides what's in the api documentation?
|
I'm currently running my webapps on Tomcat 6 in production, and would like to evaluate running Tomcat in embedded mode. Is there a good tutorial or other resource besides what's in the api documentation? |
|||||||||||||
|
|
Code speaks for itself. See the pom.xml snippet and the class to run tomcat.
|
|||
|
There are a number of reasons why one might use Tomcat over Jetty:
Point #5 has been important in my work. For example, I can gain direct access to a JSPWiki instance via Tomcat, but it's completely inaccessible when using Jetty. I asked for a solution to that in 2007 and haven't yet heard an answer. So I finally gave up and began using Tomcat 6. I've looked into Glassfish and Grizzly, but so far Tomcat is (amazingly) the most stable and well-documented web container (which isn't saying much really). |
|||||||||||||
|
|
Though this post is some what aged, I m answering my own answer as it could save some other' time
I also faced the Usage:
Do not forget to place the default It should be noted that the shutdown hook is inspired from Antonio's answer. |
||||
|
|
|
This might help. If you download the source package for Tomcat6.x, you get this class: http://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/catalina/startup/Catalina.html#main(java.lang.String[]) Which is an example of how to use the Embedd class: its a shell to stop|start a specific Tomcat installation. (I mean you can set up If you compile this you can run like this: java -D"catalina.base=%CATALINA_BASE%" -D"catalina.home=%CATALINA_HOME%" org.apache.catalina.startup.Catalina start I'm not sure how to alter this code to shutdown the server yet though! |
||||
|
|
|
After reading this thread some months ago, I wrote this project: spring-embedded-tomcat. It can be used to embed tomcat6 into Spring-based applications. |
|||
|
|