How to access the jstl attribute "difpos" in jsp varaiable "ph".
<c:set var="difpos" value="10"/>
<%int ph = pageContext.getAttribute("difpos"); out.println(ph);%>
I am getting the error in eclipse as "Type mismatch: cannot convert from Object to int"
I tried as below
<%int ph = (Integer)pageContext.getAttribute("difpos");
the error is cleared, but output error as
"java.lang.ClassCastException: class java.lang.Long cannot be cast to class java.lang.Integer (java.lang.Long and java.lang.Integer are in module java.base of loader 'bootstrap')"