Home > Software engineering >  Run and debug DBeaver with NetBeans
Run and debug DBeaver with NetBeans

Time:03-04

Context: I am using enter image description here

How can I run the application in debug mode?

Update: I have already right clicked on the project and selected "Clean and Build", which ended with "Build Success". But the menu entry "Run" in the context menu of the project is still disabled.

CodePudding user response:

Since DBeaver is an Eclipse RCP application, you need to use Eclipse IDE for RCP and RAP developers. See https://github.com/dbeaver/dbeaver/wiki/Develop-in-Eclipse.

You can also use IntelliJ IDEA (https://github.com/dbeaver/dbeaver/wiki/Develop-in-IDEA), but that requires building DBeaver in Eclipse first.

  • Related