Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
I know that IntellJ IDE is better than Eclipse for Java coding. But I have a hard time figuring out what would be easier to develop. An Eclipse plugin or an IntellJ plugin. Both have their own guidelines for plugin development but does anyone has any experience in plugin development to answer me? Thanks!
It depends. Would do you want to archive with your plugin?
General answer:
When I want to work with an existing code base - i.e. writing a plugin, first I take a look at the documentation to get a rough overview and then I get my fingers dirty as fast as possible.
I take an example or existing plugin that does something similar that I want to archive and I start to experiment.
So, try out both. One day writing/changing a simple Eclipse plugin and the other day doing the same with with IntelliJ platform.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 1 year ago.
Improve this question
I'm using VSCode for java. If I want to be a java developer, can I use VsCode for future coding or I should change it (Eclipse, IntelliJ, NetBeans)?
VSCode support is improving for java, but it is not good as Eclipse yet. If you are looking for free software, then I recommend Eclipse. Paid version of Intellij is really good.
One suggestion is to learn your IDE well. Learn common tasks and use of debugger well.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
Can i have intalled on my computer both bluej and netbeans? I have bluej now, if i uninstall it , everything related with it will be unistalled to (every libraries). And generally is netbeans better option?
As per first question, you can install BlueJ, Netbeans, Intellij, Eclipse any other IDE all can be installed in the computer. I have installed both Intellij and Eclise in my system. It is up to the user about how many IDEs to be installed. Besides, each IDE has its own speciality and beauty. It is too broad to compare which one is better. As far as your learning is concerned, you have liberty to use any IDE.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
i used JRebel for few days...but using eclipse Kepler version i did not feel much difference in program execution and Project build, i followed same procedure as they mentioned on their official website. Does JRebel really improve programming efficiency ?
I think this question might get closed as it is very generic but if it doesn't then I think JRebel does not speed up build time or execution but allows classes to be updated on the fly. This can negate the need for server restarts in web development and it is here where JRebel will save time (the time it takes to restart and redeploy an application once a class file is changed.
There is a nice video here
http://zeroturnaround.com/software/jrebel/
Hope this helps
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
At our company we're taking a critical look at the products in our Java Development/QA street. One of the products we're looking at is Apache Continuum.
Could someone with Continuum experience (and preferably also Jenkins experience) explain what the advantages and disadvantages of Apache Continuum are (especially with regards to Jenkins)?
My first impressions are:
Advantages:
Better suited for grouping builds and projects (from a UI perspective).
Disadvantages:
No clear dashboard.
A relatively small community.
No plugins (right?).
We are using continuum and we switched to jenkins.
Jenkins advantages:
Findbugs
pmd
checkstyle
code coverage (very good chart see for emma)
integration with artifactory
integration with sonar
post build task (build other projects, automatic archiving)
new delivery of jenkins every week - critical bugs are solved very quickly
rpm/deb packages (you can use yum/deb for automatic update every week)
In jenkins you create the view and you can group projects there.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I have created a java based project using Netbeans as an IDE. Now I want to obfuscate my project. How can this be done?
You need to use a source obfuscator.
I have used Zelix Klassmaster in the past and it is pretty good.
I have used RetroGuard and i was really happy with it. The thing I really liked was the ability to use it from my build file, so that I could deploy the project directly obfuscated.
Take a look at proguard - you can integrate it into ANT.