Using Scriplt variable in JSTL


<%
List<UserPublicProfile> top3Users = UserUtils.getTop3Users();
    pageContext.setAttribute("top3Users", top3Users);

pageContext.setAttribute("top3Users", top3Users);   

%>

 <c:forEach items="${top3Users}" var="user"> 
                        <td align="left" valign="top" width="76px" >
                        <c:set var="photoUrl" scope="page" value="https://${user.profilePhotoUrl}"/>                       
                           <img class="top_img" src="${photoUrl}" width="73" height="79">
                        </td>
                        <td align="left" valign="top"  class="top_data">
                           <label class="top_name">${user.name}</label><br>
                        <p class="rank_font">Rank :<label class="top_rank">${user.rank}</label></p>
                        <p class="rank_font">Votes :<label class="top_rank">${user.votes}</label></p>
                        </td>
                     </c:forEach>