What is meant by Core Java?What is meant by Advanced Java?What is the difference between both? Is Core Java useful to connect a JSP front end and MySQL back end?
Core Java
Collapse
X
-
Originally posted by jith87What is meant by Core Java?What is meant by Advanced Java?
Advanced Java would then be anything, that is more than Core Java.
Originally posted by jith87Is Core Java useful to connect a JSP front end and MySQL back end? -
Originally posted by jith87Does Core Java mean the level of the J2SE standard edition and Advanced Java mean the level of the J2SE enterprise edition?
J2EE is the java web technologies. It is used to develop web applications. In this you will find the topics of JSP, Servlets,EJB,Ja vaBeans etc
In The advance java you can find Swings,Beans,Se rvlets,Sockets, JDBC,RMI etc. core java and advanced java is
defined topic wise in various universities curriculam. There is no such division by the sun Inc. J2SE contains topics of both core as well as advance java.Comment
-
Originally posted by jith87What is meant by Core Java?What is meant by Advanced Java?What is the difference between both? Is Core Java useful to connect a JSP front end and MySQL back end?
Core Java is normally used to refer to the standard Java packages that form the J2SE JDK. Anything that uses those classes alone is written using core Java.
Advanced Java is mostly used to refer to certain extensions of the J2SE. Most commonly J2EE is refered to as advanced Java.
To connect to MySQL you need to use JDBC which is part of the J2SE packages therefore that requires core Java. To display the results in a JSP, however, you need the JSP to be running on some server and you need J2EE (JSP, Servlets, EJBs).
Edit @OP Please don't flood the forum with the same question. Double posting is against site rules and can have consequencesComment
Comment