JSP debugging in eclipse.
- put a break point in jsp.
- you would see the variables in the debugger.
- the variable for page context would be either.
_jspx_page_context or pageContext based on where you put the break point.
- in the display tab (of debugger) type -
pageContext.findAttribute("aggregatedResults");
(or)
_jspx_page_context.findAttribute("aggregatedResults"); and then inspect. thats it.
- you would see the variables in the debugger.
- the variable for page context would be either.
_jspx_page_context or pageContext based on where you put the break point.
- in the display tab (of debugger) type -
pageContext.findAttribute("aggregatedResults");
(or)
_jspx_page_context.findAttribute("aggregatedResults"); and then inspect. thats it.