After reading the Q&A How to avoid Java code in JSP files? I stopped coding with scriptlets.
So started reading JSTL and got a doubt that I found JSTL is have a relation with EL.
But I am not getting the exact relation between them.
Here I got the code from here
<c:set var="test" value="JSTL Core Tags"></c:set>
<c:out value="${test}"></c:out>
I know <c:set
is a JSP tag and ${test}
is Expression language ..
My confusions are
Won't working with JSTL
alone work? Does it always need the support of EL
? If not always needed, how in the above case?
How to simply use the Expression language without JSTL tags?
The EL, initially, has been designed to be used inside attributes of the JSTL tags, and any other custom tag you might want to use or write yourself.
A later version of the JSP spec has allowed using the EL directly inside the JSPs, but this doesn't mean the JSTL isn't useful anymore. The only thing you can do with EL directly in the JSP is to write some value to the response like for example
${user.id}
which would write the ID of the user bean. If you want tests, loops, HTML escaping, URLs, date an number formatting, etc., you still need to use the JSTL.