Java EE Is Moving To the Eclipse Foundation (adtmag.com) 70
Oracle has chosen the Eclipse Foundation to be the new home of the Java Platform Enterprise Edition (Java EE), the company announced this week. Oracle made the decision in collaboration with IBM and Red Hat, the two other largest contributors to the platform. From a report: "The Eclipse Foundation has strong experience and involvement with Java EE and related technologies," wrote Oracle software evangelist David Delabassee in a blog post. This will help us transition Java EE rapidly, create community-friendly processes for evolving the platform, and leverage complementary projects such as MicroProfile. We look forward to this collaboration." Mike Milinkovich, executive director of the Eclipse Foundation, is optimistic about this move, which he said is exactly what the enterprise Java needs and what the community has been hoping for.
JBoss Development? (Score:2)
The article says that Oracle will continue to support its Weblogic server, but what about JBoss?
Re:JBoss Development? (Score:5, Insightful)
As far as I know JBoss is owned by Red Hat, so I wouldn't expect any news about it from Oracle. Since Java EE is a spec, not a code base, this move is good news for other implementations, as it means Java EE can continue without Oracle if needed.
Re: (Score:2)
And Glassfish [github.io], the Java EE application server inherited from Sun and supported by Oracle, seems to be doomed to oblivion. Happily, the project was forked [payara.fish].
I haven't used Java since my college days... (Score:1)
Re: (Score:3)
As a former NetBean IDE user, I find this development disturbing.
This is just the Java EE spec moving to the Eclipse Foundation, not Java SE or the standard Java SE implementation. So while it may slightly increase Eclipse IDE adoption, the decision won't have undo impact on NetBeans, IntelliJ or other IDEs.
Re: (Score:2)
Stupid auto-correct.
Re: (Score:2)
Having tried both (althought not for a long time), I always remember NetBeans being much more polished and never understood why Eclipse was so popular.
What? (Score:1)
I guess it has been a long time. Eclipse has WAY more useful functionality than Netbeans.
Re: (Score:2)
Re: (Score:1)
It's probably subjective, but can you be more specific?
When I was in college 15 years ago, NetBeans was more polished and ran better on my Dell laptop. Eclipse today probably has more plugins than NetBeans to do something else beside Java. When I developed PHP modules for Joomla ten years ago, I used Eclipse with the PHP plugin. Today I use PyCharm for Python that is based on the IntelliJ IDEA IDE.
Re: (Score:1)
Re: (Score:2)
Re: (Score:1)
Re: (Score:2)
The version control plug in of Eclipse, especially abstracting away the conflicting wordings of the various SCC systems, is the best I have ever seen.
And don't forget: Eclipse has a vi/vim plug in, too.
Re: (Score:2)
Speaking for myself, I use Eclipse because I develop for a wide array of platforms, and using a number of different languages.
Eclipse can accommodate everything I need, so I can use the same IDE for all of my projects. That's a pretty huge win.
Re: (Score:2)
Well, depending on when you were in college, Java's probably got a lot better since then. But we're not talking about Java. Java EE isn't a language; it's large framework written in Java for creating complex distributed systems, along with specifications for how to package and deploy software written in that framework.
Early versions of Java EE had serious design flaws, the most serious of which was that it used a kind of thin interface to theoretically remoteable objects that in practice seldom were. Unde
I think it's a good choice (Score:4, Insightful)
Re:I think it's a good choice (Score:5, Insightful)
The right direction being "Oracle washing their hands of it and having nothing more to do with it as they can't monetise it", so yes. This is definitely going in the right direction.
At least they didn't just kill it off and bury it, like some of the other things they took over.
Oracle's touch is like a death-knell to everything from Solaris to OpenOffice.
Re: (Score:2)
You mean they can't FIGURE OUT HOW to monetize it.
Re: (Score:2)
It's an interesting development. IBM started an IDE to compete with SUN development products (Eclipse, get it?). Oracle buys SUN. Now what's left of SUN (Java EE, at least) gets handed over to IBM.
Eclipse, indeed!
The IDE Opinion (Score:2)
Why does a language need an "Enterprise Edition"? (Score:2)
C/C++ just has compilers and libraries. There's no special "enterprise" version of the compiler (well, not on linux/unix, MS VC++ might be a different story) so why does java have to have these artificial demarcations other than as marketing device?
Re:Why does a language need an "Enterprise Edition (Score:4, Informative)
Java is not just a language, it is also a platform (JVM, APIs, etc). The different editions are for the plaform not the language. So there is a platform for 'normal' usage (SE), a platform for long-running, network intensive applications (EE), and a platform for lightweight use (ME).
Re: (Score:2)
You didn't answer the question. The question is, why can't the "platform" mumo jumbo just be furnished as add-on libraries?
Re: (Score:3)
I did answer the question. It is more than 'just libraries'. The JVM, for example, is not 'just a library'.
The 'editions' are just specifications. They are closer to something like POSIX than 'C'. The editions specify not only the libraries, but also things like how applications should be packaged, etc. If your Java installation meets the spec for the 'edition' that is required by an application, then you can run the application WITHOUT having to install a bunch of libraries, etc.
Re: (Score:2)
JEE is a specification. It's a set of APIs and specifications for packaging applications. Typically, it is furnished as add-on libraries.
Re:Why does a language need an "Enterprise Edition (Score:5, Informative)
Java is not a compiler.
It is a huge set of specifications, a huge set of standard libraries, and a mountain of open source frameworks and platforms. And VMs ...
SE: standard edition, mainly for desktop apps, but the line to EE is blurry
EE: enter prise edition, defines standards for accessing DBs, do OR mapping (via annotations (*)), have annotation(*) based REST/SOAP services and build in tools to support development or out of the box deployment
In other words, if you want to run a C++ web service, you first need a web server (extra download and install) where you can deploy your *.so/*.dll to, then you configure something that the web server knows what requests to route to your plug in.
In Java EE, there is a build in web server, and you simply deploy the *.dll analogon (a *.war) and the server configures everything automatically, based on annotations (*)
(*) an annotation can be considered as a smart comment. The compiler puts it into the object code and the deployment environment interprets it (with framework support) and weaves the necessary missing code around it or uses reflection to orchestrate what ever the annotations are supposed to do.
Re: (Score:2)
Its a framework on top of the Java language. It should have been called something else to prevent confusion, but Sun wanted to make sure the word Java was plastered everywhere.
Re: (Score:2)
Naming things in an unclear and/or confusing manner is a time-honored tradition in the Java world.
Re: (Score:2)
Using as many acronyms as possible all starting with/having a J is also a time-honored tradition. What with EJB, JAAS, JAX-WS, JAX-RS, JSP, JSF, JTA, JPA, JMS, JCA, and on and on and on the list goes.
Re: (Score:2)
And how exactly would you name a Java release/bundle/specification that is aimed for enterprices and business applications like Amazon or Twitter?
Enterprise Edition sounds fine dor me.
Re: (Score:2)
Oh for Christ sake. It's Java. Period. The same goddam language syntax as any other "edition" of Java. Why do you have to try to make it sound grand? Linux is written in C, not "Super OS Developer's Edition C". So it includes a whole lot of functions. So what.
Re: (Score:2)
Yeah, and a CD is the same as a DVD is the same as a Blue Ray Disk ...
There are about 5 editions of Java:
Standard Edition
Enterprise Edition
Micro/mobile Editon
Inoffical real time Edition
Inofficial (several) embedded Edition
Deal with it.
No idea what you want to rant about.
So it includes a whole lot of functions. So what.
If you want to break it down to this level of ignorance: yes, Java EE has more functions than Java SE. Facepalm.
Re: (Score:2)
Anything without Java in the name, to decrease the level of confusion. Like every other framework in the world. It was an idiotic decision driven by morons and marketers.
Re: (Score:2)
And what would be the alternative to power Amazon, Zalando, Google, Twitter?
Just to name a few?
C? Assembly?
Please go back under your rock, troll.
Re: (Score:2)
Amazon was more than 50% C++ when I worked there. And those services tended to be more reliable. But at any rate, I said the NAME of an enterprise framework shouldn't include Java, which a 2nd grade reading comprehension would have told you. That name has only ever caused confusion.
Re: (Score:2)
And why should it not contain Java, when the inventor of Java thinks so?
After all it is a Java VM, with a javac compiler and Java enterprise specifications with reference implementations in the Java language?
And it is completely useless for C++ or other languages unless you want to interface those vi JNI with "Java"?
shouldn't include Java, which a 2nd grade reading comprehension would have told you.
Then you should perhaps use first grade writing skills, or have a clue about what you write. Why a Java Edi
Re: (Score:2)
Because its not Java. Java is a language. J2EE is a framework on top of it. Once again, some lessons in reading comprehension would really help you out.
Re: (Score:2)
Java is an island some where in the Pacific.
Java is a enterprise computing platform and frameworks.
Java is a programming language.
Feel free to run your 'J2EE' framework dependent applications on a backend without installing the Java Enterprise Edition.
I might have overseen an important statement you want to make, however you seem just to be a nitpicker.
No one really understands/grasps what you want to say.
Google around and install 'Java the language' on your computer, and see how fat that gets you.
Re: (Score:2)
Naming is stupid, geared to large business acceptance. Microsoft has the same .Net language, but with IDE differences instead of language differences. And they have a compact framework with a subset of language features like ME.
https://stackoverflow.com/ques... [stackoverflow.com]
Re: (Score:2)
Re: (Score:2)
It removes his company from any resource expenditures associated with the maintenance of the widely used framework (themselves included). This should have been a no-brainer. Removing the maintenance costs, but retain the benefits. In addition, their attempts to monetize it pretty much has been exhausted.
IMO, I believe that had they continued to pursue the path of trying to monetize the entire framework or even portions of it, supporters would have just abandoned it, and in the long run hurt themselves e
Re: (Score:2)
This should have been a no-brainer. Removing the maintenance costs, but retain the benefits.
I'm not sure I see how it removes the maintenance costs.
Unless the answer is no, it seems like this move will save a little personnel overhead but little else.
Re: (Score:2)
I guess it will have to be seen as to WHAT PARTS of the EE product will actually be moved outside of their company. But from the sounds of it, this move is to further development in the EE product as a whole at a more rapid pace without having to put cash infusions by themselves. The related costs for just maintaining a major project is not a drop in the bucket. Enhancing one costs even more. Now they want to enhance it more rapidly.
Do it by yourself? Or, release the project to a foundation with a record
Re: (Score:1)
They are also giving NetBeans to the Apache Foundation, the first donation just made it on git with another to come.
Same reasoning, more developers and faster development, less financial pain.
Re: (Score:2)
Total Eclipse (Score:5, Funny)
Re: (Score:2)
Obligatory Oracle Blog Post Source (Score:1)
https://blogs.oracle.com/theaquarium/opening-up-ee-update
Good news (Score:2)
The less that I have to deal with Oracle, the better my life is.
Re: (Score:2)
I'm certain IBM was one of the main ones jockeying for this, and IBM seems to prefer the Eclipse Foundation for whatever reason.
Re: (Score:2)
Reposting because I accidentally replied to the wrong comment:
I'm certain IBM was one of the main ones jockeying for this, and IBM seems to prefer the Eclipse Foundation for whatever reason.
Most Ironic (Score:2)
IBM chose the name "Eclipse" to fight against "Sun" and that was the primary reason for Sun to not join Eclipse. It was derogatory to them. Now it is Eclipse which forever going to hide Sun. With OpenOffice, Sparc and Solaris going away, Java was the only remnant of Sun under Oracle (which acquired Sun) and now that too is gone. Effectively, Oracle is now Sun free and will have Eclipse instead (it is not getting rid of J2EE from its products).
Re: (Score:2)