q0987
q0987

Reputation: 35992

Java EE and Servlets and JSP

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?

Upvotes: 2

Views: 755

Answers (3)

Faisal Feroz
Faisal Feroz

Reputation: 12785

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

Upvotes: 0

duffymo
duffymo

Reputation: 308998

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.

Upvotes: 1

Pascal Thivent
Pascal Thivent

Reputation: 570595

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

Upvotes: 5

Related Questions