This question already has answers here:
JDK = Java SE && JDK != Java EE?
(7 answers)
Closed 4 years ago.
I am newbie in Java, sorry for this question but I have not a good answer to my questions regarding to this issue.
1) I look at Java SE versions history and see the versions seems to come from Java SE versions. Is the Java language version is directly related to Java SE JDK history? What does Java 8 means? Is it the language version corresponding to Java SE JDK version 8?
2) What about the Java EE SDK and JDK? Does it have no effect on the version of Java?
I have been very confused regarding to these issues about the versions of programming language and libraries. Could you pls. clarify me?
SE (Standard Edition) and EE(Enterprise Edition) basically are the Java Editions.
JDK means Java Development Kit which contans JRE (Java Runtime Enviroment) and JVM (Java Virtual Machine).
yes you are right. java 8 is the language versions. every version of java come up with new Features.
and Some versions of java have both EE and SE and Some have only SE.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am currently migrating a project to jdk 10, and since the Java.xml.* have been deprecated, I have used Jakarta ee instead.
Which Jakarta ee version is compatible with Java 10?
Which Jakarta EE version is compatible with Java 10?
I don't know if that is actually an answerable question. Java / Jakarta EE is fundamentally a set of specifications. The specifications do not prescribe a specific Java SE platform or compatibility requirements1.
So what you should really be doing is selecting the EE implementation you intend to use (e.g. Glassfish, JBoss, WebSpere, Weblogic, Wildfly and so on) based on the versions of Java that they require.
Having said that, you should not be targeting Java 10 as an execution platform. It has reached its end of life. You should either target Java 11 (which currently the latest Java LTS release) or the latest non-LTS release. But beware that non-LTS Java releases only have a life time of 6 months.
At this point in time (2 years after its end-of-life) it is likely that most Java EE implementations will no longer (officially) support Java 10 as an execution platform.
1 - Exception: the draft for Jakarta EE 9 requires that the underlying Java platform supports at least Java SE 8.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I am a newbie to Java world, coming from .Net. In the .net world we don't have so many options. I have some basic questions to help me get some more context.
Is the Spring Framework built on top of Java SE or Java EE?
Or are Java EE and Java SE Oracles products? Meaning Java SE is Oracle's implementation of Java?
What is Spring Framework built on? In other words, if I wanted to build a Spring like Framework would I start with Java SE as a base?
Thanks
Java SE (Standard Edition) and Java EE (Enterprise Edition) are not concrete products, they are specifications. There are implementations of these specifications available. Oracle's JDK (Java Development Kit) is an implementation of the Java SE specification.
Basically:
Java SE = the Java programming language + the API of the standard library
Java EE = extra APIs for enterprise computing
Meaning Java SE is Oracle's implementation of Java?
No, Oracle's JDK is Oracle's implementation of Java SE (the specification).
Oracle also has a Java EE SDK which is an implementation of the Java EE specification, which includes the GlassFish application server. There are other implementations of Java EE available, such as WildFly (formerly JBoss), IBM's WebSphere and Oracle's WebLogic Server.
Spring is a library and framework built on Java SE, but it also supports some of the Java EE specification. You do not need a Java EE application server to use Spring.
About IoC (Inversion of Control), see: What is Inversion of Control?
I want to know the difference between java 6 and java 7 while creating android app.
As i have seen a question here. and here. Which should we use and what are the other issue which can occur while using them.
In general Java 7 is on Android not supported. So you have to use Java 6 on Android.
Java 7 is supported from Android API 19 (KitKat 4.4), but it will fail on any other version below.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Java 6 is a stable version of this programming language. But I would like to upgrade to the current version java 7. At this time, is recommended to use java 7 in production? Where I can find updated information about the possible problems that I can get if I upgrade to java 7?
Why use or not use java 7 to make JAVA EE applications
This was added later. The main reason not to use Java 7 is that your web server might not support Java 7. e.g. some very expensive EE servers haven't got round to migrating to Java 7 in the 2.5 years since it was available for testing. IMHO this is pretty poor given the money they charge.
At this time, is recommended to use java 7 in production?
AFAIK, Java 7 is more recommended than Java 6, give it is not supported for free any more.
Java 7 is a requirement for the G1 collector, Java Mission Control and JavaFX 2.
Note: with Java 8 coming out soon with many new/powerful features, I expect many developers will be using it by the middle of 2014.
Where I can find updated information about the possible problems that I can get if I upgrade to java 7?
Most of the problems have been around client applet security.
https://blogs.oracle.com/henrik/entry/migrating_from_java_se_6
http://docs.oracle.com/javase/7/docs/webnotes/adoptionGuide/
http://www.slideshare.net/myfear/practical-migration-to-java-7
http://publib.boulder.ibm.com/infocenter/ieduasst/v1r1m0/index.jsp?topic=/com.ibm.iea.was_v7/was/7.0/Architecture/WASv7_JavaCompatibility/player.html (note this has audio)
You should use a supported Java version. Have a look at the Oracle Java SE Support Roadmap. Java 6 has reached "END OF PUBLIC UPDATES" - so it is not supported anymore.
At least you should run your Java 6 code on a Java 7 VM.
Aside from the convenient improvements to the language in 7 and the fact that 6 is no longer supported, there were some very serious security issues with 1.6 that caused Apple (amongst others) to drop default support for Java.
Those issues were fixed with 1.7 and for that reason alone, you should update.
Two blogs detailing the controversy below;
http://www.intego.com/mac-security-blog/apple-drops-java-in-latest-os-x-security-release/
http://www.darkreading.com/vulnerability/apple-removes-default-java-support-in-br/240009305
it is dependent, if you are going to make an application for android you may use Java 6, but if your creating a application for desktop it is recommended to use Java 7.
Java 7 have some improvement of course, specially on file io, which is .nio package.
This question already has answers here:
How to install a specific JDK on Mac OS X?
(17 answers)
Closed 9 years ago.
I'm looking for the "Java SE Express" jdk for developing an adobe AIR plugin. According to the book, "Java: in Parts" by John Malcun the link is there in the oracle website, but the link in the book doesn't work, and I can't find from searching.
I hope you really searched well before blaming Oracle. here you go:
http://docs.oracle.com/javase/7/docs/webnotes/install/mac/mac-jdk.html
EDIT: There are freely available IDEs such as eclipse. You can download eclipse for MAC from :
http://www.eclipse.org/downloads/?osType=macosx