Re: [appengine-java] NullPointer on key

2009-11-13 Thread Max Ross (Google)
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

[appengine-java] NullPointer on key

2009-11-12 Thread IlyaE
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;