Using both Eclipse and NetBeans on the same project

前端 未结 8 1038
忘掉有多难
忘掉有多难 2021-01-31 15:42

Eclipse is a really great editor, which I prefer to use, but the GUI design tools for Eclipse are lacking. On the other hand, NetBeans works really well for GUI design.

相关标签:
8条回答
  • 2021-01-31 16:12

    Echoing @Tom I'd use an external build tool (Maven 2 would be my pick). I've done this on projects before and as long as you don't walk all over Eclipse's .Xxxx files and folders you'll be fine. Then you get the full power of Netbeans (which integrates with Maven 2 really nicely) or Eclipse and also have the added value of an external build which can also be run by your CI tool. Everybody wins!

    0 讨论(0)
  • 2021-01-31 16:20

    Define your project dependencies with Maven, and use it to generate project configuration files for both Netbeans and Eclipse.

    Try to keep separate classes directories for Eclipse and Netbeans, since Eclipse doesn't like it when external tools touch its classes.

    0 讨论(0)
提交回复
热议问题