Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having hard time in understanding why and when to use EJB.

I think it is enough to run the web application on a Web server like tomcat, with struts as the web framework ( or could be anything) and just use POJO to handle business logic which will be called by the servlet or the struts action classes. Since i am not using any container provided services, Do i need to use EJB here? For persistance, i will use Hibernate and can use JDBC transactions.

For a application that support 300-500 users,runs inside the organization, clustered ( 2 instances), i think EJB is not required.

People say that EJB should be used in the distributed applications. Why is it so?

share|improve this question

1 Answer

No simple answers to this, given the history of the JavaEE specs and implementations.

Short answer(s):

  • an EJB container can manage transactions for you, while you simply declare transaction boundaries (in xml or code annontations). A container generally will include distributed transaction management (if you need to update multiple resources, say a database, an LDAP directory, and send a jms message as part fo a single transaction). Managing transactions in your code can be verbose and error-prone.

  • an EJB container typically includes or integrates with other enterprise-level technologies "out of the box"

Of course there are a lot of tradeoffs. For straightforward database interactions, you might look at JPA, which can be used with or without an EJB container. Here's a quick overview:

http://publib.boulder.ibm.com/infocenter/ieduasst/v1r1m0/index.jsp?topic=/com.ibm.iea.wasfpejb/wasfpejb/6.1/EJB3Applications/WASv61_EJB3FP_JPAOverview/player.html

Here's a more in-depth discussion of pros and cons (at least the first third of the post - the discussion gets into Java community standards politics):

http://www.adam-bien.com/roller/abien/entry/jsf_jpa_ejb_bloat

share|improve this answer
2  
Thanks a lot joeniski. Other than the transaction, persistance, and other container services, do we really need EJB. For scalability and performance, which is better. servlet calling a plain pojo to do the work vs servlet calling ejb. – VimalKumar Dec 16 '10 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.