Somnath Mallick wrote:... EL, which comes from JSTL.
That is
not correct. As of JSP 2.0, the EL is evaluated by the core JSP engine and is independent of the JSTL.
Now, i have never used JSTL, so would i be able to learn JSP 2.0 without knowing JSTL 1.0?
JSTL 1.0 is for JSP 1.2. If you are using JSP 2.x,
you should be using JSTL 1.1 or 1.2.
And without the JSTL, you'll need to resort to using scriptlets in your pages to do pretty much anything. Bad idea. Very bad idea. Man up and learn JSTL and step into the modern world of JSP.
Or should i go through JSTL as well before digging into JSP 2.0?
Learn the JSP 2.0 EL and JSTL in conjunction with each other. They go together like hand and glove.