tomcat - JAVA jar debugging issue -


i trying debug web application hosted on tomcat. have following execution flow structure.

public classa {     public void execute(classb query)     {         ....         .....         importedobjectfromjar = query.execute();         ....         ....     }  } 

i using f6 navigate through code down line , code reach line importedobjectfromjar = query.execute(); eclipse asking me add source files of different 3rd party libraries. (the jar file has no source attachment).

why? don't want go inside jar file, interested in code. ideas how can fix it?

i'd keep stepping until came out other side code. should able deal .class files.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -