How to set a breakpoint in Eclipse in a third party library? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T23:47:03Z http://stackoverflow.com/feeds/question/370814 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library 1 How to set a breakpoint in Eclipse in a third party library? boutta 2008-12-16T09:42:20Z 2008-12-16T20:39:51Z <p>I'm getting a NullPointerException in a Class from a 3rd party library. Now I'd like to debug the whole thing and I would need to know from which object the class is held. But it seems to me that I cannot set a breakpoint in a Class from a 3rd party. </p> <p>Does anyone know a way out of my trouble? Of course I'm using Eclipse as my IDE.</p> <p>Update: the library is open-source.</p> http://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library/370819#370819 2 Answer by Joachim Sauer for How to set a breakpoint in Eclipse in a third party library? Joachim Sauer 2008-12-16T09:45:05Z 2008-12-16T09:45:05Z <p>You can easily set method breakpoints in 3rd party libraries without having the source. Just open the class (you'll get the "i-have-no-source" view). Open the outline, right-click on the method you want and create the method breakpoint (I don't know of the exact words in the menu right now, you'll find it).</p> http://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library/370917#370917 1 Answer by Bent André Solheim for How to set a breakpoint in Eclipse in a third party library? Bent André Solheim 2008-12-16T10:25:20Z 2008-12-16T10:25:20Z <p>Normally, you should be able to set a break point. Especially if the 3rd party library is open source. But if your 3rd party lib is from a commercial vendor, they may have compiled the source with the debug flag turned off. This will make it impossible for you to debug into it. Your vendor might have done this as part of an obfuscation process to make it impossible to reverse engineer the library, or just simply because the final compiled classes will be smaller.</p> http://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library/370929#370929 2 Answer by lindelof for How to set a breakpoint in Eclipse in a third party library? lindelof 2008-12-16T10:29:51Z 2008-12-16T10:29:51Z <p>You can also set breakpoints on specific exceptions. From the Debug perspective, there's a button "Add Java Exception Breakpoint", and there you can add "NullPointerException". Your debugger will then suspend execution as soon as such an exception is raised.</p> http://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library/372620#372620 1 Answer by Jared for How to set a breakpoint in Eclipse in a third party library? Jared 2008-12-16T20:39:51Z 2008-12-16T20:39:51Z <p>The most sure-fire way to do this (and end up with something that's actually useful) is to download the source (you say that it is open-source), and set up another "Java Project" pointing at that source.</p> <p>To do that, get the source downloaded and unzipped somewhere on your system. Click "File"->"New"->"Java Project". In the next dialog, give it a project name and select "Create Project from Existing Source". Browse to the root location of the open source library.</p> <p>Supposing that all the additional libraries that are required by the project and such are included in the project you downloaded, Eclipse will figure everything out and set the build path up for you.</p> <p>You'll need to remove the open source jar from your project's build path, and add this new project to the build path of your project.</p> <p>Now, you can just treat this as your code, and debug at will.</p> <p>This gets around at least a couple of problems with other approaches:</p> <ol> <li><p>You could "attach source" to the jar file, but if the jar file was compiled without debug information, this still won't work. If the jar file was compiled with debug information (<code>lines,source,vars</code>...see <a href="http://java.sun.com/j2se/1.3/docs/tooldocs/win32/javac.html" rel="nofollow">http://java.sun.com/j2se/1.3/docs/tooldocs/win32/javac.html</a>, and the <code>-g</code> option).</p></li> <li><p>You could add an "exception breakpoint" to see when the NullPointerException is raised, but that's a common exception, and may well get raised and dealt with many (hundreds of?) times prior to the one you're looking for. Plus, without the original source, you won't be able to really see much of anything about the code that is throwing the NullPointerException - the likelihood you'll be able to figure out what's wrong is pretty low.</p></li> </ol>