If User is an entity, and I need to store User in Session, it will be detached on next request.

AFAIK there're only 2 methods to handle these detached objects

  1. EntityMerge(session.user) - update DB with session's object (unsafe)
  2. session.userID - entityLoadByPK() again on next request (more load)

Are these the only 2 workarounds? Any other ways?

According to Advanced Techniques with ColdFusion 9 ORM Integration Slide Deck Concurrency with method #1 will throw error if entity has been changed on merge, but how is this useful? catch the exception and use method #2?

When to use EntityReload()? I thought it works the same way as EntityMerge(entity) but it doesn't.

Thanks!

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I tend to only store the ID of the user that is logged in in the session.

Then I have a UserService.getCurrentUser() facade method that returns that user if I need it.

That way the user is always current, and never detached.

link|improve this answer
feedback

I generally just use a lightweight proxy object (containing top-level properties only) in session and only load the full entity as needed in exactly the same use case as you've described. Don't use method #1 unless you really want to burn yourself (experience talking there).

link|improve this answer
how lightweight? just fields without behaviour? how is it different from struct of properties like method #2? Thanks! – Henry Dec 14 '10 at 2:42
+1 This is what I do (same concept as @Mark Mandel's answer and @Henry's option #2) but a bit more robust than just ID). I have defined a UserBean w/ a small subset of info (eg id, username, fullname) from the User ORM entity, populated (Coldbox beanFactory.populate makes it a single call) and saved to session. Any complex lookups (say child relationships) reference session.userbean.getID(). – mujimu Mar 2 '11 at 4:12
feedback

Hibernate sessions are lazy loaded, and do not persist. So while you have the CF object in memory, they're pointing to a Hibernate session which is out of scope, for lack of better terminology. To get back in scope, you basically need to wake it up on your subsequent requests, using something like EntitySave() or EntityLoadByExample()

I do agree that wrapping in a service not only helps you avoid some of these issues, but is overall better architecturally than touching the entity directly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.