How to get HttpSession attributes from jsf web page

1.3k Views Asked by At

I am trying to write some code in jsf scriptlet to get a attribute from HttpSession and compare with a UI value (to display a pop-up when both session and UI values are same ) .

1

There are 1 best solutions below

1
On

You can do it in JSF with EL: #{session.getAttribute('key') eq uiValue}.

List of all JSF EL objects can be found here.