Hi, I have some questions about how to classify state fields of stateful session bean, please clear it for me or recommend some articles for me, thank in dvance. how many type of state fields are in stateful session bean? what need to be serialized when passivating ?
SCJP<br />SCWCD<br />SCEA
Shankar Ranganathan
Ranch Hand
Joined: Sep 19, 2001
Posts: 71
posted
0
Non Transient fields will be passivated. You can download ejb1.1 specification from sun site.
what are non-transient and non-serializable fields?
Rama Raghavan
Ranch Hand
Joined: Aug 22, 2001
Posts: 116
posted
0
Kinda lost with your question(s), BUT - If you want to know about different states of the stateful session bean lifecycle, then "Mastering EJB" by Ed Roman is your best resource.
Thomas Hofmann
Ranch Hand
Joined: Nov 23, 2002
Posts: 72
posted
0
what are non-transient and non-serializable fields?
A transient instance variable in SFSB can be declared as follows:
In this case the state of wouldn't be wirtten to disk if the SFSB is poing to be passivated. Only serializable variables can be passivated (written to disk). All basic Java types (int, short, boolean) and all custom classes that implement the marker interface