vote up 0 vote down star

I have this code:

@PersistenceContext(name="persistence/monkey", unitName="deltaflow-pu")
...
@Stateless
public class GahBean implements GahRemote {

But when I use this:

try{
 InitialContext ic = new InitialContext();
 System.out.println("Pissing me off * " + ic.lookup("java:comp/env/persistent/monkey"));
 Iterator e = ic.getEnvironment().values().iterator();
 while ( e.hasNext() )
     System.out.println("rem - " + e.next());
}catch(Exception a){ a.printStackTrace();}

I get this exception:

javax.naming.NameNotFoundException: No object bound to name java:comp/env/persistent/monkey

If I remove the lookup the iterator doesn't have anything close to it either. What could be the problem?

flag

68% accept rate
I would recommend you edit your question: "Another JPA Question *rolls eyes*" does nothing to describe the problem other than indicating it involves JPA and notes your frustration. Perhaps include something about exception in title. – Jason Jackson Oct 3 '08 at 19:01
I took off the rolls eyes for him. – Daok Oct 3 '08 at 19:07

2 Answers

vote up 1 vote down

This could be my ignorance about JPA showing, but you appear to have "persistence" in some places and "persistent" in others. I'd start by making sure the names match.

link|flag
vote up 0 vote down

If I inject it by the way it works fine, but everywhere I read about that they say it isn't threadsafe to do it that way.

link|flag

Your Answer

Get an OpenID
or

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