• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

EJB Server crash.

 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
28. Which are guaranteed by EJB 2.0?

A) Server crashes will be transparent to entity bean clients.
B) Server crashes will be transparent to stateless session bean clients.

The correct answer is A, any one coule give me explanation.
Thanks a lot.

Hai
 
Ranch Hand
Posts: 379
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Hai Lin:
28. Which are guaranteed by EJB 2.0?

A) Server crashes will be transparent to entity bean clients.
B) Server crashes will be transparent to stateless session bean clients.

The correct answer is A, any one coule give me explanation.
Thanks a lot.

Hai



That one troubled me also. The bottom line is that following the specs, entity beans (pls note: not entity bean instances) will survive a container crash, because entity bean are a 'logical' representation of the underlying persistence storage (read db) and if your container crashes, your data don't, and because entity bean are on OO view of your data, they survive either.
reply
    Bookmark Topic Watch Topic
  • New Topic