Why "import javax.jdo.* "caused error ?

Posted by Frank on Stack Overflow See other posts from Stack Overflow or by Frank
Published on 2010-04-24T15:05:43Z Indexed on 2010/04/24 15:13 UTC
Read the original article Hit count: 411

Filed under:
|
|

I have a class uses the following lines, it works fine in a Google App Engine project:

import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import javax.jdo.annotations.PrimaryKey;

But when I included this class in another project, it cause error : package javax.jdo.annotations does not exist

What should I do to find javax.jdo.* ?

Frank

© Stack Overflow or respective owner

Related posts about jdo

Related posts about import