PDA

View Full Version : how to reponse :entity Bean with server crash


pinglu
Sep 22nd, 2004, 05:56 PM
I remember " only entity bean can surrive server crash", how to reponse that, when we would like elimit entity bean.
You know I don't like entity bean, but when you want to push spring, I need the "answer" for those hear about this "server crash" statement.

Thanks! :roll:

Ping

Rod Johnson
Oct 11th, 2004, 05:12 AM
Entity beans respond to server crashes because they represent data in persistent storage, such as an RDBMS. If you now replace entity beans withy say Hibernate or JDO mapped objects accessing the same relational data, you have similar robustness.

This doesn't directly concern Spring, but how you access your data.