34. Stateless Session EJB
Stateless session EJBs have the following behaviour
- provide a single use service
- do not maintain state on behalf of the client
- are relatively short lived
- do not survive EJB server crashes
- any two instances of the same stateless session EJB type are always identical
- each instance can be shared by multiple clients
|
|
Copyright 2004 Kanti Prasad All rights reserved
|