-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Unable to Debug #55
Comments
I want to rise this problem too |
Me too. I'm also interested how to setup this in NetBeans. |
I found a solution here: https://stackoverflow.com/questions/56197372/i-cant-debug-an-application-using-netbeans-11-with-javafx-12/56207033#56207033. it only contains a netbeans solution, but you can also do this for Intellij. To do it in intellij I added a new maven build with the debug config. I hope this helps for you guys @imlige and @draganbjedov |
@Lehcim1995 I'm currently trying to get this to work in IntelliJ. |
Yes, you need to run 2 different configurations, one for the application and one for the debugger that connects to it. (Intellij does this on the background for normal Java). As I said in my previous comment, you will need to add a compound (https://www.jetbrains.com/help/idea/creating-compound-run-debug-configuration.html) configuration with both of your configs in it. then you can call that config to start and stop debugging. |
With NetBeans IDE 16 and javafx-maven-plugin 0.0.8, the Run and Debug action button works fine after I import my Maven project. button action: Run project button action: Debug project pom.xml
Can someone please send me similar settings for debugging in Intellij IDEA? |
This doesn't work for me at all, because the execution order of the two separate run configurations within a Compound configuration isn't guaranteed (they run in parallel), but I need to ensure that the JavaFX app launches before the remote JVM debug configuration. So, I'm wondering how you managed to accomplish this? Currently, I manually run the Maven debug configuration first and then the remote JVM debug configuration. |
I have the same problem. |
Intellij skips my break points when trying to debug my application.
I believe its the same issue as this (unresolved) issue javafx-maven-plugin/javafx-maven-plugin#318
The text was updated successfully, but these errors were encountered: