layer « ejb « Java Enterprise Q&A





1. Free Record / Replay solution for j2ee EJB layer    stackoverflow.com

I'm looking for a free (if possible) solution where:

  • You can 'record' all the kinds of objects created during normal (production-like) usage of a webapp on an EJB application server (like ...

2. Can I reference my EJB layer objects from my web service layer?    coderanch.com

Hi, I have a 2-tier application in a EAR file, consist of EJB3/persistence layer (.jar) and a CXF2/webservice layer (.war). The webservice layer need to use the EJB3 beans from the EJB layer to provide web services to the front-end clients. The EJB layer compiled ok. I also configured the webservice layer to use the ejb layer using a "provided" reference ...

3. EJB Service layer    forums.oracle.com

The service/business layer best practices apply irrespective of EJB. some very obvious ones are - 1) Should contain only business functionlity - no presentation and data fetch code 2) The functionality should be clear cut and shouldnt spill over to other layers 3) Code should be comprehensible and should be cluttered with other logic (delegation) 4) Data base interaction should be ...