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?