• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Will singleton be discard when system exception thrown from @PreDestroy

 
Saloon Keeper
Posts: 2449
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
On Ivan's notes, p. 301, the diagram says for any system exception thrown by @PostConstruct or @PreDestroy,

1. if it is a singleton bean, the container will rollback any container started transaction. (I believe this singleton will be discarded as well)

2. If it is not a singleton bean, the container will discard the EJB instance.

But in the JSR-318, p.391, table 19, it says


Handling of exception thrown by a postconstruct or predestroy method of a stateful or stateless or singleton :
bean method condition: bean is stateful/stateless/singleton
container action: log the exception, if singleton rollback any container-started transaction, discard instance.



So, obviously, the container will discard the singleton when a system exception is thrown from @PostConstruct or @PreDestroy.
 
Creator of Enthuware JWS+ V6
Posts: 3412
320
Android Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, the Singleton will be discarded when a System Exception is thrown from the PostConstruct or PreDestroy method.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic