问题
Debugging in IntelliJ idea for JavaFX has been a pain for me. Mainly because when I setup a breakpoint, IntelliJ will just show me all the backend class files that I don't care about.
Is there a way to stop it from happening? I've tried stepping over but that doesn't work.
Here's an example of what happens when I debug a getText()
method.
http://i.stack.imgur.com/9zSoX.png
Any help?
回答1:
You can add a breakpoint after the method and use f9 (resume program) so intellij skips the method you dont wan't to see!
It's not a fix, just a workaround.
来源:https://stackoverflow.com/questions/29329938/intellij-idea-javafx-debugging-issue