Presumably you have a Project in your HttpSession with a null Account. This
is most likely related to FetchGroups. You probably want to put your
Project.account field in the default fetch group. That way it will always
be available when you close the persistence manager you used to load the
Proj
I'm seeing an odd issue when loading my jsps for the first time (after
deployment).
I have an Account object that has many Projects
[Account]
@Persistent(mappedBy = "account")
private List projects;
and on the otherside
[Project]
@Persistent
private Key account;