I would say if all of your requirements are solved by an ejb continer then it saves you a lot in terms of looking for frameworks that solve each piece, like transcation, persistence, messaging etc.
Here is a scenario that i built using ejb3 alone.
Developed a set of services EJBs. Exposed the ejbs as Restful services (the ejb itself and not creating other classes and injecting the ejb into it) using resteasy.
What i achieved?
- Exposed my service (ejb) as a REST web service.
- Built in support for asynchronousness. Whereever asynchronousness was required, my ejb would create a jms message and then processed by an mdb. Ofcourse both my ejb and mdb would use the same underlying pojo for the logic.
- My clients not requiring a webservice could still lookup this ejb and interact.
- Transaction management.
- Built in persistence.
For my requirements ejb sufficed as a one stop shop for my distributed services, low learning curve, not looking and evaluating multiple frameworks for each piece etc.
I am not an ejb fan and have used different solutions to solve different problems. But if your jee container can solve all your rquirements then why scramble, when you have a standard solution.
If your problems are
a) diverse and not fit into the the standard capabilities of a jee container.
b) or too small to use a full blown container.
c) or are tyring to solve a particular problem for which there is a best solution other than ejb.
d) ejbs turning out to be a performance bottleneck or inconvenient etc (i am sure this will be a big argument especially with ejb3).
then i would start thinking beyond ejb.