It seems that OpenJPA does not recognize entity classes not defined in persistence.xml. And the class above is a mapped superclass for PasswordCredentialTypeEntity.
However, even fixing this issue the quickstart is not working. There a huge gap between TomEE/OpenEJB transaction management (in this case JTA) and JBoss EAP/Wildfly. During startup I'm always getting a TransactionRequiredException.
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
Hi Matthias,
You can avoid this issue by adding the following class to your list of entity classes (persistence.xml):
<class>org.picketlink.idm.jpa.model.sample.simple.AbstractCredentialTypeEntity</class>
It seems that OpenJPA does not recognize entity classes not defined in persistence.xml. And the class above is a mapped superclass for PasswordCredentialTypeEntity.
However, even fixing this issue the quickstart is not working. There a huge gap between TomEE/OpenEJB transaction management (in this case JTA) and JBoss EAP/Wildfly. During startup I'm always getting a TransactionRequiredException.