How to expand all nodes in variable view in Eclipse?

I am trying to use Eclipse to debug a JSP page. Set breakpoints and would like to know the current value of a pair of variables, for example. this:

<c:set var="flows" value="${model.flows}" /> 

However, the hang does not work , so I am trying to use a variable view that looks like this:

Variables View

Each of them has a complex tree structure, so the search for what I need is not obvious. Is there a quick way to expand all nodes in a tree without a big mouse click? Or look for the whole tree?

+7
java variables debugging eclipse jsp
source share
1 answer

I fought the same problem in eclipse. Not finding a short and simple solution, I decided to overwrite the toString method for all my objects. This gives me the opportunity to get a string representation with the most important data inside the Variables tab debug mode without a step into a complex tree structure. Of course, this solution has a lot of effort, but if it is done, once troubleshooting is much easier.

+5
source share

All Articles