Tomcat VS Jetty [closed]

I love Jetty for its low maintenance cost. It’s just unpack and it’s ready to roll. Tomcat is a bit high maintenance, requires more configuration and it’s heavier. Besides, Jetty’s continuations are very cool. EDIT: In 2013, there are reports that Tomcat has gotten easier. See comments. I haven’t verified that.

What’s the difference between Jetty and Netty?

Jetty is a lightweight servlet container, easy to embed within a java application, there is an easy to use jetty client also. Netty is an asynchronous event-driven network application framework. You can write your own servlet container or http client app with help of the Netty framework for example. Edit: Forgot to mention that Jetty … Read more