2

Is the following statement correct?

Java EE includes Servlets and JSP

Is the above statement correct? What are some other key features in Java EE I have to know?

Arjan Tijms
  • 37,782
  • 12
  • 108
  • 140
q0987
  • 34,938
  • 69
  • 242
  • 387
  • Note that J2EE is updgraded and renamed to Java EE over 4 years ago. Keep yourself up to date. In fact, any book/tutorial/article which mentions literally "J2EE" is far outdated. – BalusC Sep 17 '10 at 14:52
  • sounds like someone is prepping for an interview... – hvgotcodes Sep 17 '10 at 14:59
  • possible duplicate of [Relationship between JSP and JEE/J2EE](http://stackoverflow.com/questions/1515190/relationship-between-jsp-and-jee-j2ee) – McDowell Jun 19 '12 at 08:14

3 Answers3

5

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
  • 562,542
  • 136
  • 1,062
  • 1,124
  • 1
    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 Sep 17 '10 at 15:02
1

Is the above statement is correct?

Yes, that's correct.

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

EJB and JMS, among others.

Arjan Tijms
  • 37,782
  • 12
  • 108
  • 140
duffymo
  • 305,152
  • 44
  • 369
  • 561
0

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

Arjan Tijms
  • 37,782
  • 12
  • 108
  • 140
Faisal Feroz
  • 12,458
  • 4
  • 40
  • 51