vote up 2 vote down star
1

I've been tasked with the awesome responsibility of trying to document the advantages of using JEE for a web app over .NET. Of course via Google I am mostly getting back blog posts on how an Int is an object in Java, or a list of code comparisons. No real hard evidence or numbers.

Is anybody aware of any legitimate studies trying to prove that one of the platforms is better than the other? For example, I'd guess that there are probably a lot more free APIs out there for Java than there are for .NET. Many people share that opinion with me. But has that ever been documented anywhere, did anybody ever attempt to quantify it? Is there a study on the quality of developer (education, level of experience, even salary) that does a Java app vs. the quality of a developer that is doing .NET? etc.

I'm looking for LINKS to known studies here, not people's opinions. I already have my own opinion.

flag

If you want links, then Google is the best place to look :-p – fortran Jul 15 at 7:53

7 Answers

vote up 11 vote down check

People have successfully built applications with both technology stacks. People have also experienced colossal failures with both. In the end, compatibility with existing platforms and skill sets is probably what matters most when selecting one over the other. If you intend to deploy on non-Windows servers, for instance, then Java is obviously a better fit.

EDIT: The best way to get access to those kinds of studies is to get them from someone interested in selling you the technology. Otherwise, companies like the Gartner Group charge large sums of money for papers like that.

link|flag
vote up 3 vote down

First off, I'm a .NET guy, so I am biased.

Second, if by JEE you mean J2EE, and you are planning web based development, then I have some questions.

If you are planning on desktop development, ask yourself if the extra 5% market share you get by using Java is worth it. Its definitely a .NET world when developing desktop applications.

However, I'm thinking you are looking at this for Web Development.

My first question, is what Java application server are you considering? Apache/TomCat is small and free, while on the flipside IBM WebSphere is huge and expensive ($2000 per cpu).

Microsoft did a great performance/cost comparison between Windows 2k3/IIS and RedHat/WebSphere here.

According to TheServerSide, .NET is both cheaper and faster in this situation.

http://www.theserverside.net/tt/articles/showarticle.tss?id=NET2BMNovember

Its a good starting point for research.

All that said, You will have to look high and low to find a java developer who does not admit that C# is a better language to enjoy writing in.

C# has real generics (Java Generics still are boxed/unboxed, its just syntax sugar), LINQ, lambda functions, delegates, and a host of other goodies that the java is missing.

link|flag
vote up -4 vote down

From the official Stackoverflow FAQ:

What kind of questions should I not ask here?

Tabs versus Spaces. Emacs versus Vi. C++ versus Java. This is not yet another place for programmers to argue about The One True Way.

Why do we have to talk about this?

link|flag
Guess you missed the part where I said "I'm looking for LINKS to known studies here, not people's opinions" – bpapa Sep 10 '08 at 14:46
vote up -2 vote down

I agree totally with Slavo but I also think that there are no silly questions. Hopefully this site doesn't become a flamewar site.

link|flag
vote up 1 vote down

checkout this blog...

http://it.toolbox.com/blogs/web2-place/net-vs-j2ee-java-ee-architectural-philosophy-11290

.NET vs. J2EE (Java EE) - Architectural Philosophy

link|flag
vote up 1 vote down

"Is anybody aware of any legitimate studies trying to prove that one of the platforms is better than the other?"

That sentence seems like a contradiction in terms to me. I would not consider any study made with the goal of reaching a certain conclusion to be legitimate. That's why "biased" has negative connotations.

My point is that you should be very critical with studies in an area like this. Most people who have an interest in doing this kind of study also have an interest in doing it wrong.

link|flag
vote up 0 vote down

J2EE development will not cost a dime in terms of buying the OS, IDE, framework, etc. whereas .Net development is not free, you need to buy windows OS, Visual Studio, etc.

Apart from this you should look at what technology resources are available to you already. From the market you can easily get resources for both the technology at same salary.

Rest all is same in case of .Net and Java.

link|flag

Your Answer

Get an OpenID
or

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