In article <alpine.DEB.1.10.0909042201380.24359@urchin.earth.li>,
twic@urchin.earth.li says...
On Thu, 3 Sep 2009, Ross wrote:
I've downloaded Jetty. It runs fine, java -jar start.jar, and you can
immediately see all the demonstration servlets. Good I think. So, how do
I add my own Servlet class to the engine,
You don't add classes, you add WARs. Servlets are meaningless outside a
WAR.
To put it another way, you need to write a little shell script which packs
your classes into a trivial WAR - it wouldn't be hard.
Can't I just put my bl**dy servlets in a directory and run them?
No.
Yes.
Can't say much about Tomcat since I don't use it, but with Jetty you can
deploy webapps to a directory as easily as deploying a WAR. The
directory just has to have the right structure (meaning, it must have
the WEB-INF directory and the proper files inside WEB-INF)...
No.
running them". That's putting servlets in a very specific directory and
running Jetty.