Are there any good web-based Java IDEs out there? I would like to keep the environment as standard as possible to avoid IDE installation problems on each developers computer.

Related: Is there any online IDE for Java?

link|improve this question
11  
If you don't trust your developers to install an IDE then you should look for other developers. – extraneon Jan 8 '10 at 16:18
I can't think on one my self, but it must exists. Try asking on superuser.com – OscarRyz Jan 8 '10 at 16:23
That is besides the point, it takes a lot of variables out of the equation. Less administration means there is less likelihood their environment can get screwed up. Each developer must have an identical environment. – Walter White Jan 8 '10 at 16:40
5  
"Each developer must have an identical environment" - this pretty much sounds like a disaster. Pandering to your IT administrators (or your own felt need to control everything) is not a great move. – Robert Grant Jan 8 '10 at 17:41
1  
Walter White, you want to herd cats. It will fail... – Thorbjørn Ravn Andersen Jan 9 '10 at 0:34
show 2 more comments
feedback

closed as not constructive by Bill the Lizard Aug 8 '11 at 17:24

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

11 Answers

up vote 2 down vote accepted

Well, my answer is that you won't currently find any web-based IDE that is anywhere near the level of functionality offered by Eclipse, Idea, or Netbeans.

(Bespin looks interesting for the future though, but is now moved to AceAjax)

link|improve this answer
This looks pretty cool. – Walter White Jan 8 '10 at 16:45
This looks like the closest match so far unless someone can one up you. :) – Walter White Jan 8 '10 at 16:52
feedback

You do understand that this is a great way to get developers to hate you, right? Perhaps for beginners/training it makes sense (but then you should be ghosting the complete machine images). But for anyone with experience, IDE configuration is a very personal thing.

link|improve this answer
1  
+1—developers shouldn't be forced into a particular configuration. To me, that's like giving artists a studio where they can't change any of the equipment. – Ed Altorfer Jan 8 '10 at 16:15
1  
+1 -- Whatever you think this level of standardization is buying you, it probably isn't. Do you want code that's so tightly coupled to the IDE that it breaks in production? Do you really want to hire developers who can't manage an IDE? – Drew Wills Jan 8 '10 at 16:20
2  
+1 -- Hey why not force the developers to use Windows without admin rights ? – Steve De Caux Jan 8 '10 at 16:26
What, other developers get to use PCs? – Carl Smotricz Jan 8 '10 at 16:28
Yes and no, if it is web-based it should be easily configurable with different themes (CSS changes). The CSS can also be used to configure the code style without affecting what is actually checked into the repository. – Walter White Jan 8 '10 at 16:43
show 3 more comments
feedback

Well, there's IdeOne. It's not exactly yours, but it's there for you to use.

link|improve this answer
It doesn't appear to be that functional yet, and it is not redistributable in your environment rendering it useless. – Walter White Jan 8 '10 at 16:51
3  
Well, the others and I are giving you a survey of what's really there. The shorter but less interesting answer is: Forget it, shut up and use Eclipse like everybody else. – Carl Smotricz Jan 8 '10 at 21:16
feedback

If your only motivation is to standardise your development environment, there are better ways than using a web-based IDE that will almost certainly be much slower and less feature-rich than your current IDE.

You can add the IDE configuration to your project's version control. I don't know how well this works with Eclipse, but it works pretty well for IDEA because IDEA separates the project structure (the .ipr file) from the developer's local workspace settings (the .iws file) so your developers can still have their own local preferences but share the stuff that should be the same for everybody.

link|improve this answer
True, it will have less features, it is less widely used at this point just like Google Chrome OS. However, I want to see what core set of features is there. If we're missing one feature that isn't that important, or a bunch that we never use, then it seems to be a winner. – Walter White Jan 8 '10 at 16:47
feedback

I can't think of one myself, but I know of at least one that is currently in development ... Eclipse e4:

http://wiki.eclipse.org/E4

Worth keeping an eye on, though I don't know when it will be ready for general release.

link|improve this answer
feedback

I would like to keep the environment as standard as possible to avoid IDE installation problems on each developers computer.

Another approach is to create an image of an operating system (Linux tends to be a good choice to minimise licensing problems) setup the development environment (install and configure Eclipse or NetBeans, for example) and then distribute the image.

Personally, I just prefer a good WIKI page with the instructions I need to get running and point new comers to that.

link|improve this answer
Yeah, that is what I've done in the past (Wiki and Image). The Wiki eats up time though for setup. As you have more developers, the process is still just as inefficient. Whereas if you bite the bullet early on, the cost later is zero. – Walter White Jan 8 '10 at 16:46
feedback

ssh to a Linux box to run javac

(and if you don't like that, then unzipping Eclipse and telling your users to "Import -> General -> Preferences" a file given by you containing all your local preferences would be my second suggestion)

link|improve this answer
Downvoted? Well, I'd rather do javac in an Emacs buffer than work with a web-based IDE (at least for now) – Thorbjørn Ravn Andersen Jan 8 '10 at 19:06
Here, have +1 back. Besides a fully functional Java IDE installable at zero cost to my Web server, I keep demanding a date with Heidi Klum, that's not working out either. – Carl Smotricz Jan 8 '10 at 21:19
Thanks. I would like to be a fly on the wall when you negotiate with your boss.... – Thorbjørn Ravn Andersen Jan 9 '10 at 0:32
feedback

You could give Compilr a shot. It's an online java IDE. Full disclosure this is a project I'm involved in.

link|improve this answer
feedback

Maybe create a common workspace for Eclipse storing it your version control system so each developer starts off with the same 'blank state'.

I know it is not a web solution but this would allow you share setting like code formatting and other project settings between a group.

link|improve this answer
That is very similar to creating an image. – Walter White Jan 8 '10 at 16:48
feedback

Try out the Java Wiki Integrated Development Environment: www.javawide.org or sandbox.javawide.org. It's not an industrial strength web-based IDE, but it does have code completion, auto-formatting, and stores everything on the server. It even supports concurrent editing (multiple people editing the same code at the same time. JavaWIDE is great for teaching programming, and interesting for its innovative features, but if you really need a professional grade IDE, you'll need something else like Eclipse or Netbeans which are certainly not web-based.

link|improve this answer
Thanks, but the Mozilla Bespin thing looks like the closest match right now. – Walter White Jan 11 '10 at 12:52
feedback

Krazy Koder ( http://www.krazykoder.com )

their web-based IDE is the one you want.

link|improve this answer
feedback