I am running into a little design problem....
If a bean is only changing the external structure and layout of data, should it be an entity or session bean?
The data is already persistent modeled as entity beans,
but we are only concerned about the representation of the data.
-
Entity or Session Bean ??? (2 messages)
- Posted by: John Smith
- Posted on: October 05 2001 03:03 EDT
Threaded Messages (2)
- Entity or Session Bean ??? by Joost van de Wijgerd on October 05 2001 08:09 EDT
- Entity or Session Bean ??? by John Smith on October 05 2001 08:46 EDT
-
Entity or Session Bean ???[ Go to top ]
- Posted by: Joost van de Wijgerd
- Posted on: October 05 2001 08:09 EDT
- in response to John Smith
best make it a session bean, especially if the data you want to structure and layout consists of multiple Entity Beans.
Joost. -
Entity or Session Bean ???[ Go to top ]
- Posted by: John Smith
- Posted on: October 05 2001 08:46 EDT
- in response to Joost van de Wijgerd
yes it consists out of multiple beans, but it would be important that the data structure encapsulated in this bean is accessible by all users very fast as it is a the core element of our project.