[ACCEPTED]-The ultimate Java version table (J2EE, Java EE, Servlet, JSP, JSTL)-jstl

Accepted answer
Score: 41

Here is one: enter image description here

Also I want to add some information 8 about Java EE7:

In Java EE 7, no changes 7 were made to JSP and JSTL because these 6 specifications have not been updated.

Expression 5 Language has been removed from JSP and now 4 has its own JSR (341).

Servlets and JSF have 3 both been updated.

WebSocket 1.0 was introduced 2 in Java EE 7.

And also please see this image 1 for Java EE7:

enter image description here

Let me add this as well:

enter image description here

Score: 20

Wikipedia has a Java EE version history. Not in a table, but you 7 can easily bake one yourself based on that 6 if you want. To make it available to everyone, you 5 could just add it as a table to the very 4 same Wikipedia page. The current Java EE 3 6 uses by the way Servlet 3.0 / JSP 2.2 / JSTL 1.2.

JSP 2.2 is by the 2 way nothing more than a "maintenance 1 release" of JSP 2.1.

Score: 6

In case anyone was still looking for a tabular 3 format ... I had a crack at a java web specs. table as a side-note 2 to a blog post about EL errors. I haven't 1 updated it to include Servlet 3.0 specs.

Score: 3

This one is also nice:

+=============+================+====================+=============================================================================+
|   VERSION   |      DATE      |   JAVA EE / JDK    |                             FEATURES / CHANGES                              |
+=============+================+====================+=============================================================================+
| Servlet 4.0 | September 2017 | JavaEE 8           | HTTP/2                                                                      |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 3.1 | May 2013       | JavaEE 7           | Non-blocking I/O, HTTP protocol upgrade mechanism                           |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 3.0 | December 2009  | JavaEE 6, JavaSE 6 | Pluggability, Ease of development, Async Servlet, Security, File Uploading  |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 2.5 | September 2005 | JavaEE 5, JavaSE 5 | Requires JavaSE 5, supports annotation                                      |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 2.4 | November 2003  | J2EE 1.4, J2SE 1.3 | web.xml uses XML Schema                                                     |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 2.3 | August 2001    | J2EE 1.3, J2SE 1.2 | Addition of Filter                                                          |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 2.2 | August 1999    | J2EE 1.2, J2SE 1.2 | Becomes part of J2EE, introduced independent web applications in .war files |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 2.1 | November 1998  | Unspecified        | First official specification, added RequestDispatcher, ServletContext       |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 2.0 |                | JDK 1.1            | Part of Java Servlet Development Kit 2.0                                    |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+
| Servlet 1.0 | June 1997      |                    |                                                                             |
+-------------+----------------+--------------------+-----------------------------------------------------------------------------+

Found here: https://stackoverflow.com/a/33346887/8682071

0

More Related questions