el « Session « JSP-Servlet Q&A





1. EL session object property    stackoverflow.com

${sessionScope.pricer.applicableRateCode}

public class ViewPrices implements Cloneable, Serializable {    
    private static final long serialVersionUID = 1;
    // fields      ...

2. Prevent session attribute access by EL    stackoverflow.com

I understand how to access Session attributes using EL in my JSP/Servlet application:

    <p> Hello <c:out value="${sessionScope.userName}"/> </p>
However, I was wondering if there was a way to hide ...

3. JSLT EL display session attribute    coderanch.com