I'm quite new to Java EE and I was asking myself the following question:
What are the differences between holding a link to a Stateful session bean and holding a link to a POJO in a SessionScoped Managed bean?
Since the ManagedBean is sessionscoped it's kept during the Session. Therefore I was thinking I could still have access to a simple POJO during the session. Right?
So what's the real purpose of a SFSB here?