Stateful Session EJB Part 4 Creating Jsp



Stateful Session EJB Part 4 Creating Jsp

Stateful Session EJB Part 4 Creating Jsp

Enterprise JavaBeans (‘EJB’) is a managed, server-side component architecture for modular construction of enterprise applications.
The EJB specification is one of several Java APIs in the Java EE specification.
EJB is a server-side model that encapsulates the business logic of an application.

A session bean encapsulates business logic that can be invoked programmatically by a client over local, remote, or web service client views.
Session beans are of three types: stateful, stateless, and singleton.

Stateful Session Beans
The state of an object consists of the values of its instance variables. In a stateful session bean,
the instance variables represent the state of a unique client/bean session.
Because the client interacts (“talks”) with its bean, this state is often called the conversational state.

Session bean is similar to an interactive session.
A session bean is not shared; it can have only one client.
When the client terminates, its session bean appears to terminate and is no longer associated with the client.

Check out our website: http://www.telusko.com

Follow Telusko on Twitter: https://twitter.com/navinreddy20

Follow on Facebook:
Telusko : https://www.facebook.com/teluskolearnings
Navin Reddy : https://www.facebook.com/navintelusko

Follow Navin Reddy on Instagram: https://www.instagram.com/navinreddy20

Subscribe to our other channel:
Navin Reddy : https://www.youtube.com/channel/UCxmkk8bMSOF-UBF43z-pdGQ?sub_confirmation=1
Telusko Hindi :
https://www.youtube.com/channel/UCitzw4ROeTVGRRLnCPws-cw?sub_confirmation=1

Comments are closed.