EJB lazy loading: What is lazy loading?

What is lazy loading?

- Heavy weight application consume a lot of time while loading the plug-ins.

- In lazy loading approach, the plug-ins that are needed at that particular time are loaded and instantiated.

- This boosts up the performance as only the plug-ins that are used to load.

- This also ensures the efficiency and speeds up the initial load time of the applications.

- Applications like eclipse use this approach. In other words, the goal of lazy loading is to dedicate memory only when it is absolutely necessary.
EJB Session Bean: What is Session Bean?
EJB Session Bean - Session beans are used to shield the client from the complexity of the business logic..
EJB Stateful Session bean: What is a Stateful Session bean?
EJB Stateful Session bean - Between the client and the session bean, the state of the conversation can be maintained...
EJB stateless session bean: What is stateless session bean?
EJB stateless session bean - A stateless session bean is an enterprise bean that does not maintain conversational state specific to a client session..
Post your comment