Which implementations of the Servlet 3.0 specification are available (or at least in beta) besides GlassFish?
Asked
Active
Viewed 8,519 times
14
-
as of 2010-06-15 there is no other production ready servlet 3.0 than GlassFish 3.0 – Thorbjørn Ravn Andersen Jun 15 '10 at 10:59
3 Answers
10
Tomcat 7.0 is on its way. It is still in development. Jetty 8 is supposed to implement Servlet 3.0, it is also still in development (check the Versions section at bottom).
As far now there's only the GlassFish v3 as being a stable release.
-
In fact I think GlassFish is just using Tomcat: jar tf glassfish/modules/web-core.jar shows org.apache.catalina and org.apache.tomcat classes. – Mirko N. Dec 30 '09 at 14:50
-
4
-
2
-
-
I can confirm that: Jetty 7 supports only parts of Servlet 3.0. You cannot deploy a .war file without a web.xml for example. – deamon Dec 30 '09 at 20:00
-
Yes, maybe I was somewhat too fast with Jetty :) still have to wait some more. shame on me :) – HeDinges Dec 30 '09 at 22:08