vote up 0 vote down star
1

Hopefully, I can explain this issue properly. I have 3 classes that deals with my entities.

@MappedSuperclass public abstract class Swab implements ISwab { ... private Collection accounts; ... }

@Entity @Table(name="switches") @DiscriminatorColumn(name="type") @DiscriminatorValue(value="DMS500") public class DmsSwab extends Swab implements ISwab, Serializable { ... private ObjectPool pool; ... @Transient public ObjectPool getPool(){ return pool; } ... }

@Entity(name="swab_accounts") public class SwabAccounts implements Serializable { private static final long serialVersionUID = 1L;

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int swab_account_id;
private int swab_id;

... }

And in a EJB a query is being doing this way DmsSwab dms = em.find(DmsSwab.class, 2); List s = new ArrayList(1); s.add(dms);

My persistence.xml looks like this: http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"> oracle.toplink.essentials.PersistenceProvider com.dcom.sap.dms.DmsSwab com.dcom.sap.jpa.SwabAccounts

I get this error: java.lang.IllegalArgumentException: Unknown entity bean class: class com.dcom.sap.dms.DmsSwab, please verify that this class has been marked with the @Entity annotation. com.dcom.sap.SwabException: java.lang.IllegalArgumentException: Unknown entity bean class: class com.dcom.sap.dms.DmsSwab, please verify that this class has been marked with the @Entity annotation. Caused by: java.lang.IllegalArgumentException: Unknown entity bean class: class com.dcom.sap.dms.DmsSwab, please verify that this class has been marked with the @Entity annotation. at oracle.toplink.essentials.internal.ejb.cmp3.base.EntityManagerImpl.findInternal(EntityManagerImpl.java:306) at oracle.toplink.essentials.internal.ejb.cmp3.EntityManagerImpl.find(EntityManagerImpl.java:148)

I am running netbeans 6.1 with the version of glassfish that comes with it. MySql 5.0.

flag

68% accept rate
Can you re-edit this using markdown to show the code? it's very difficult to read your message – davetron5000 Oct 1 '08 at 20:23
Added the "java" tag to help get more views. – James Schek Oct 2 '08 at 15:00
I second davetron5000 comment, can you please re-edit the post so that it becomes easier to read the code? – Einar Oct 22 '08 at 8:12

1 Answer

vote up 1 vote down

According to the error message and what I figure from your code, the error seems to be in the persistence.xml file, can you be a bit more verbose ?

link|flag
I found the answer. Netbeans/glassfish needs some work it seems. I had to undeploy, stop the server, and restart and then it worked fine. – arinte Oct 3 '08 at 14:31

Your Answer

Get an OpenID
or

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