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
JSTLalone work? Does it always need the support ofEL? If not always needed, how in the above case?How to simply use the Expression language without JSTL tags?