tags:

views:

27

answers:

3

Hello all,

Is the following statement correct?

J2EE includes Servlets and JSP

Is the above statement is correct? what some other key features in J2EE I have to know?

Thank you

+3  A: 

Is the above statement is correct?

Yes, Servlet and JSP are part of the Java EE specification.

what some other key features in Java EE I have to know?

It all depends on your needs. But here are some other parts of Java EE (non exhaustive):

  • JPA
  • JMS
  • EJB
  • JTA
  • CDI
  • JAX-WS
  • JAX-RS
  • JCA
Pascal Thivent
Note that over a half of them is not part of J2EE. But for JEE6, it's correct. [Here's another overview](http://stackoverflow.com/questions/2296678/where-can-i-find-a-list-of-all-the-reference-implementations-for-jee6).
BalusC
A: 

Servlet and JSP are part of the Java EE specification. Here is an overview of JEE Feature List

Faisal Feroz
That list is for the ancient J2EE 1.3, not really Java EE / JEE...
BalusC
+1  A: 

Is the above statement is correct?

Yes, that's correct.

what some other key features in J2EE I have to know?

EJB and JMS, among others.

duffymo
JNDI is part of Java SE
Pascal Thivent