• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

How do J2ee JDK and WSAD relate?

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am new to Java, and I am learning about WSAD as well. I want to know what role does J2ee play in using WSAD, Are JDK and J2ee the same? If not what is the difference?
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Java Development Kit is the compiler, JVM, tools and all the libraries and APIs defined as "Java 2 Standard Edition" or J2SE. The "extended edition" or J2EE adds servlets and EJBs and a number of other APIs. Some of these features have implementation classes and some are just interfaces and standards that any vendor may implement.

Sun also provides "reference implementations" of some of the APIs in J2EE, like a servlet container and an EJB container. They often say the reference implementations give you an idea of how things work, but may or may not be production ready. This is a neat way of doing business as it lets other vendors compete on high capacity implementations of a solid standard and provides a baseline for inter-operability.

WSAD is one of many development tools. It's based on Eclipse (which you can download for free) and adds features (that IBM thinks are worth a lot of money) to generate and manage J2EE applications among other things. There are open source plugins that compete with some of these features.

 
They gave me pumpkin ice cream. It was not pumpkin pie ice cream. Wiping my tongue on this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic