Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
View Poll Results: What IDE do you use for Java in Slackware?
|
Anjuta
|
  
|
0 |
0% |
CodeLite
|
  
|
0 |
0% |
CodeWarrior
|
  
|
1 |
2.44% |
Eclipse
|
  
|
18 |
43.90% |
Field Bird Java Tools
|
  
|
0 |
0% |
Geany
|
  
|
6 |
14.63% |
IntelliJ IDEA
|
  
|
4 |
9.76% |
JBuilder
|
  
|
0 |
0% |
JDeveloper
|
  
|
0 |
0% |
JEdit
|
  
|
3 |
7.32% |
NetBeans
|
  
|
12 |
29.27% |
Emacs
|
  
|
5 |
12.20% |
Vim/Vi
|
  
|
14 |
34.15% |
Other Editor
|
  
|
2 |
4.88% |
Other IDE
|
  
|
1 |
2.44% |
 |
|
08-24-2013, 11:58 AM
|
#1
|
Member
Registered: Nov 2011
Distribution: Slackware
Posts: 363
Rep:
|
Java developers: What IDE do you use for Java in Slackware?
I'm an IDE hopper myself, having tried a whole slew of text editors, as well as NetBeans, Eclipse, and IntelliJ IDEA. I find myself wondering how many other Slackers program in Java, and how they do it. So I've listed every (semi-reasonable) possibility I can think of. Hopefully I haven't forgotten anything major.
Feel free to give the details of your setup (plugins, etc.) and reason for your choice as well. Maybe it will help others in the future. Votes are public and multiples are allowed. 
|
|
|
08-24-2013, 12:19 PM
|
#2
|
Member
Registered: Apr 2011
Location: Canada
Distribution: Slackware
Posts: 99
Rep:
|
Only did java programming in a university course, but I stuck to vim the whole way through.
|
|
|
08-24-2013, 02:36 PM
|
#3
|
Member
Registered: Jul 2012
Distribution: Slackware
Posts: 95
Rep:
|
I use geany for everything from Python, PHP, to Java and Javascript.
And im with jprzybylski, only did java programming in school.
Last edited by cisneros; 08-24-2013 at 02:37 PM.
|
|
|
08-24-2013, 03:02 PM
|
#4
|
Senior Member
Registered: May 2003
Distribution: Slackware, OpenSuSE
Posts: 1,839
|
The most important part of any IDE is the editor, and I prefer VIM for that, but also use Kate, Geany, and JuffEd. Sometimes, however, a fully-fledged IDE is really useful, as it helps to automate the whole build process and supports the editor with code completion and also helps to avoid bad mistakes regarding type casts etc.
gargamel
|
|
|
08-24-2013, 08:21 PM
|
#5
|
Senior Member
Registered: May 2003
Distribution: Slackware, OpenSuSE
Posts: 1,839
|
Looking at the list of tools I miss XDEV 3. Quite popular, very good for RAD, it seems, and free of license costs (but not open source).
gargamel
|
|
|
08-24-2013, 08:41 PM
|
#6
|
Moderator
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,324
|
I don't do much java myself, but my son sits on the other side of the room most days with a Vim full of java code. Tmux and Vim on a Slackware GNU/Linux platform is pretty much unbeatable, so we have no need for lesser IDEs!
|
|
1 members found this post helpful.
|
08-24-2013, 08:41 PM
|
#7
|
Senior Member
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,860
|
I use NetBeans.
In my day job(TM), I work on a product with just over 2 million lines of java source.
A lot of my co-workers use Eclipse and appear to be happy with it.
|
|
|
08-24-2013, 09:09 PM
|
#8
|
Member
Registered: Nov 2011
Distribution: Slackware
Posts: 363
Original Poster
Rep:
|
Quote:
Originally Posted by gargamel
Looking at the list of tools I miss XDEV 3. Quite popular, very good for RAD, it seems, and free of license costs (but not open source).
gargamel
|
In creating the list I deliberately left out anything centered on Rapid Application Development, because it really is a totally different paradigm. Programming without programming is a novel concept, to be sure, but there's no substitute for writing code. (At least I hope not. Otherwise, I'm going to be pretty miffed in twenty years' time when no one remembers how to maintain the programs we wrote to write our code for us.  )
Thanks for the link to JuffEd. Also, I might give XDEV 3 a spin, just to try! It does look pretty intriguing. That's how they get you, of course . . .
|
|
|
08-24-2013, 11:15 PM
|
#9
|
Senior Member
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,860
|
Quote:
Originally Posted by gargamel
The most important part of any IDE is the editor, and I prefer VIM for that, but also use Kate, Geany, and JuffEd. Sometimes, however, a fully-fledged IDE is really useful, as it helps to automate the whole build process and supports the editor with code completion and also helps to avoid bad mistakes regarding type casts etc.
gargamel
|
It depends on the size of the project, but a lot of times the most useful part of an IDE are its ability to perform auto-completion on method calls and being able to find out the answer to questions like "who calls this method on this object?" or "what implements this interface?" or "what are the subclass of this class?"
|
|
1 members found this post helpful.
|
08-25-2013, 12:06 AM
|
#10
|
Moderator
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,324
|
Quote:
Originally Posted by Richard Cranium
It depends on the size of the project, but a lot of times the most useful part of an IDE are its ability to perform auto-completion on method calls and being able to find out the answer to questions like "who calls this method on this object?" or "what implements this interface?" or "what are the subclass of this class?"
|
But grep, sed, awk and company, and some good filesystem organization habits are 'as' or 'more' effective for those same tasks, for those who learn their basic usage (nothing advanced necessary - lucky for me!).
I have seen argumets that once a project reaches a certain size you just have to use an IDE, but my experience has been just the opposite. Having my "fingertips" on the code becomes an even greater advantage as things grow.
I am not arguing against IDEs actually. I have tried to use a few over the years but always revert to the shell.
I think it has more to do with how an individual learns - if they learned in an IDE then they are probably more comfortable in an IDE. But overall I do think it is a somewhat limiting environment.
|
|
|
08-25-2013, 01:46 AM
|
#11
|
Senior Member
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,860
|
Quote:
Originally Posted by astrogeek
But grep, sed, awk and company, and some good filesystem organization habits are 'as' or 'more' effective for those same tasks, for those who learn their basic usage (nothing advanced necessary - lucky for me!).
|
I take it that you have not worked on a very large Java project to make such a claim. Merely using grep to attempt to find the answers to those questions that I had posted will result in a large number of false positives. The various IDEs will parse the source files and create a cross reference database in order to correctly and swiftly answer such things. No false positives and no missed references.
I've worked on the aforementioned 2M LOC code base for ~10 years; I used JDEE for a good portion of that time and NetBeans for the last few years.
The productivity boost of NetBeans was sufficient for me to stop using Emacs for Java development and I'm a die-hard Emacs fan. (Now that CEDET is part of standard Emacs, there might be better source analysis for Java in Emacs' future that could be used to help with auto-completion and code crawling. But it isn't there now.)
Now, NetBeans is a Java application itself and needs a fair amount of heap to run efficiently (well, for a 2M LOC project anyways). So if you are in a resource constrained environment, you'll probable have to use something else.
I'll stop sucking the oxygen out of the thread now.
|
|
2 members found this post helpful.
|
08-25-2013, 02:03 AM
|
#12
|
Moderator
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,324
|
Quote:
Originally Posted by Richard Cranium
I take it that you have not worked on a very large Java project to make such a claim.
...I'll stop sucking the oxygen out of the thread now.
|
Thanks for your comments Richard.
No, I have not worked much with java at all (so arguably I should not even be here...), and have no experience with the java based IDEs at all.
But I have worked some very large, and intense C/C++ projects, among others, and base my comments on that experience.
And I agree, this thread is probably not the right place for further discussion on the topic, so I'll slink away now as well.
|
|
|
08-25-2013, 06:03 AM
|
#13
|
Member
Registered: Sep 2011
Location: Italy
Distribution: Slackware
Posts: 651
Rep: 
|
I primarily use Eclipse although, sometimes, I seldom use Netbeans too.
What I find really useful in Eclipse are its automatic refactoring/completion features and the plethora of plugins available to extend the environment in a lot of ways for a lot of different purposes.
Speaking of Eclipse plugins: - I experimented a lot on Xtext-based projects (but also on Ecore/EMF ones), developing some domain languages and generators;
- I often use the FindBugs plugin to spot potential issues in my projects;
- I also use the C/C++ plugin with the autoconf/automake one when developing some C projects
|
|
|
09-16-2013, 10:54 PM
|
#14
|
Samhain Slackbuild Maintainer
Registered: Sep 2004
Location: Phoenix, AZ, USA
Distribution: Slackware
Posts: 411
Rep:
|
I use Intellij for all my work. I'm a recent convert, less than a year. But it is the best IDE by far. It uses the least amount of resources, has the most features and is the most stable.
I'd say it uses about half the resources of STS or Netbeans. It has excellent support for frameworks like navigating Tiles references for example. It supports aspects better than anything else out there. It's much more stable and less prone to locking up. You can run JPA queries on the fly outside of running your application. I could go on and on because there are tons of little features that are great too.
Prior to that, I was a Netbeans guy for 6 years. It's a great IDE too. I like the app server hooks the best on Netbeans because it runs things as you would outside the IDE. Maven builds are native now too so there's no special IDE specific structures to maintain in Netbeans. Netbeans has no AspectJ support though. This makes is a hard IDE to use with Aspect development and frameworks like Spring Roo.
I've also used Eclipse and the Spring Source Tool Suite, sometimes known as STS. I hate Eclipse and all its derivatives. I wish it would go away. Each release seems to get less and less stable. I keep up with it because it's so popular and I like being able to help other people with their problems. And people have a lot of them with STS or Eclipse because it's such a kludge. I can't believe the resources that are wasted on getting things working in Eclipse. It's especially egregious because it eats itself once in a while and has to be reinstalled. This is on all platforms, Windows, Linux and Macs.
Some projects force the use of one IDE, usually Eclipse, because the project has done something stupid with the build and no one has the time or the know how to fix it. I hate these projects and it gives Java a bad name because continued development is invariably hindered by other nonsense in the code base.
On a happier note, I use Slackware for everything. It's been my primary development platform for the last 5 years at work. I'm a consultant so I end up in a lot of different environments with various clients. Linux is the way to go. No one runs their app servers for Java on Windows so it usually works out well even in Windows centric environments. Windows is such a dismal platform for Java development.
|
|
2 members found this post helpful.
|
09-17-2013, 02:03 AM
|
#15
|
Member
Registered: Dec 2006
Location: Glasgow, UK
Distribution: Slackware current
Posts: 425
Rep:
|
I use netbeans for one large java project and find it invaluable. For smaller projects on C, python or php I prefer to use vim or Kate plus command line tools.
|
|
|
All times are GMT -5. The time now is 04:56 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|