The moose likes Architect Certification (SCEA/OCMJEA) and the fly likes Transient variables in EJB Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Professional Certification » Architect Certification (SCEA/OCMJEA)
Reply Bookmark "Transient variables in EJB" Watch "Transient variables in EJB" New topic
Author

Transient variables in EJB

jagadish babu
Greenhorn

Joined: Dec 18, 2002
Posts: 8
EJB 1.1 spec says "In Serialization,transient fields are always set back to their initial values of their field types, but in EJB, transient fields are not necessarily set back to their initial values but can maintain their original values or an arbitrary value, after being activated" - Richard Monson-Haefel.
Does any one know, how this is acheieved in EJB ?
Rufus BugleWeed
Ranch Hand

Joined: Feb 22, 2002
Posts: 1551
IMO
A bean gets created with a new or is recycled instance of an object in the same class.
The container can ignore the transient directive, serialize and unserialize.
The container can follow the transient directive, not initialize the member. Now the value is arbitrary.
 
 
subject: Transient variables in EJB
 
Threads others viewed
Chapter 4 - HF Sark study group
instance variables and passivation..
long post IBM.158
transient fields and entityManager.refresh
EJB passivate
developer file tools