Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to try Unix for developing J2EE application. I use the IBM software.

  1. WASCE as application server
  2. DB2 Express-C as database.
  3. Eclipse

Which Unix flavour will be most suitable for me?

share|improve this question
I you want to wear only blue clothes (including underwear), then go for AIX on IBM hardware with an IBM JVM, etc. But you know, this doesn't really matter with Java. And by the way, good luck, IBM tools are not known to be the most... friendly :) – Pascal Thivent Dec 13 '09 at 21:35

4 Answers

up vote 0 down vote accepted

If you really mean "UNIX" and not "Linux", I would recommend Solaris (Eclipse does run on Solaris, and it's much easier to understand than AIX).

If you mean Linux too, I would recommend a distro designed for servers, like RHEL/Centos, rather than Ubuntu or Fedora. They are more likely to be stable and scalable.

share|improve this answer
Thanx for ur response. Going to give a try to solaris – RishiPatel Dec 16 '09 at 12:50

According to ibm.com: WebSphere Application Server Community Edition runs on AIX, Linux, Solaris, "UNIX" (!!!), and Windows.

According to ibm.com: DB2 Express C runs on Windows, Linux, Solaris, and Mac OS X (in beta).

According to eclipse.org: Eclipse runs on Windows, Mac, and Linux.

The only Unix flavor in common to all of those is Linux. (If you move beyond Unix, Windows also works.)

share|improve this answer

Java is platform-independent. It doesn't really matter on which platform you develop - you can run your application on any other Java-supporting platform. Hence, you can develop on Windows and deploy on AIX, or develop on Linux and deploy on MacOS, or ...

The Java VM abstracts access to operating system services and resources, as does JDBC abstract the access to the database layer.

share|improve this answer
If Rishi were talking about generic Java, I would agree with you. But Rishi mentioned specific programs. There may be platform-specific code in these programs. – Chip Uni Dec 14 '09 at 2:27
The OP's question does not contain any reference to platform-specific code. He is talking about J2EE/JEE – mhaller Dec 14 '09 at 7:50
JDBC abstracts the database layer, but there is difference between, say, SQLite and Oracle. – el.pescado Dec 21 '09 at 13:46

I have a production environment on Centos with DB2 and Apache Geronimo (open source version of WASCE). Works like a charm. The development environment is Eclipse and Apache Geronimo on Windows and the DB2 on Centos.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.