Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Advantages and Disadvantages of Java EE vs. Servlets

What are the primary reasons for using the Java EE (EJBs) over just a simple Servlet implementation?

I am working on developing a new project that will primarily be a web service that must be very fast and scalable.

Sorry for any confusion, Although I am experienced in Java, I am very new to the Java Web world, and may not be asking this question well.

like image 544
jW. Avatar asked Aug 11 '09 20:08

jW.


2 Answers

Servlets are HTTP request listeners; they can't respond to anything else.

If you embed a great deal of logic in servlets it won't be available to any other clients.

Write your app in POJOs. Get it thoroughly tested without an app server involved. Then worry about how you'd like to package and deploy it. Servlet? EJB? Web service? Something else? No problem - those are just packaging and deployment issues. Get the behavior that you want working properly in POJOs first.

Spring can give you a lot of options here. I'd recommend it.

like image 158
duffymo Avatar answered Oct 13 '22 12:10

duffymo


EJB's specification 1.x and 2.x added complexity that for most webapps was not needed.

Due this complexities the new frameworks appeared to simplify the development and the runtime architecture ( Hibernate / Spring / other microcontainers / others ORM frameworks ) .

EJB's 3.x matches this changes ( through JDO and JPA ) and now, using Servlets with these enhanced frameworks or Java EE with EJB 3 + would give you basically the same results.

Using a Java EE Application Server would add you a number of administrative advantages ( GUI to manage pools, logs, monitoring, transactions etc. ) With out them you may have the same result but you would have to do it all by hand ( editing configuration files that is ) Which may not seem too problematic, but if you plan to have an administrator for your webapp It would be better to use the admin tools that come out of the box with this servers.

like image 27
OscarRyz Avatar answered Oct 13 '22 12:10

OscarRyz