What's the difference between Jetty and Netty?

前端 未结 3 1259
青春惊慌失措
青春惊慌失措 2021-01-29 18:37

What is the main difference between Jetty and Netty?

Netty is part of Jboss, but is it the default web server container?

Does Netty support Servlets 3.0?

3条回答
  •  无人及你
    2021-01-29 19:17

    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 8 and Apache Tomcat 7 support servlet 3.0 spec, but netty doesn't. Because it's not a servlet container.

提交回复
热议问题