With this example we are going to demonstrate how to create a simple Stateless Session Bean. A stateless session bean does not maintain state with the client. When a client invokes the methods of a stateless bean, the bean’s instance variables may contain a state specific to that client, but only for the duration of the invocation. When the method ...
Read More »Home » Enterprise Java » ejb3 »
Stateless Session Bean to persist Entity
This is an example of how to create a Stateless Session Bean to persist an Entity. A stateless session bean does not maintain state with the client. When a client invokes the methods of a stateless bean, the bean’s instance variables may contain a state specific to that client, but only for the duration of the invocation. When the method ...
Read More »