J2EE Patterns Best Practices
- Use ServiceLocator/EJBHomeFactory Pattern to reduce expensive JNDI lookup process.
- Use SessionFacade Pattern to avoid direct client access to Entity beans thus reducing network calls.
- Use MessageFacade/ServiceActivator Pattern to avoid large method execution process.
- Use ValueObject Pattern to avoid fine grained method calls over network.
- Use ValueObjectFactory/ValueObjectAssembler Pattern to avoid multiple network calls for a single client request.
- Use ValueListHandler Pattern to avoid using Entity beans and send data iteratively to the client.
- Use CompositeEntity Pattern to avoid inter Entity bean overhead.
Tags: j2ee patterns, best practices
Can't find what you're looking for? Try Google Search!
Comments on "J2EE Patterns Best Practices"