« Home | Security, Exceptions and logging » | Linq stack over flow explanation. » | ECMA Script5 » | Javascript patterns / thoughts. » | Data structures and algorithms. » | Chess client interface in YUI. » | Unicode, things to know. » | Differences between myisam and innodb » | Removing unnecessary .svn folders from » | Java collections and generics. » 

Thursday, November 19, 2015 

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.