• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Jeanne Boyarsky
Sheriffs:
  • Rob Spoor
  • Devaka Cooray
  • Liutauras Vilda
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Piet Souris

maintain a statful bean state during passivation

 
Bartender
Posts: 2396
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In mock exam 1 of EPractice Lab:

a stateful session bean contains a number of instance variables. .... A and B are not serializable....C is defined as having a serializable type and can hold all the information which is in B.



The explanation:


A and B are not serializable.
C holds instance of B.
We need to maintain the state of the session bean over a passivation and activation...
C is used to create the value of instance variable B in @PostActivate method.
A is transient, B is converted to null and assigned to C in @PrePassivate method



By reading this explanation, A skips the serialization. So, I don't think A is restored. Maybe, there should a serializable variable D that hold all information of A and assign A to D in PostActivate method.
reply
    Bookmark Topic Watch Topic
  • New Topic