Also, a related question. After the UserType errors were elimintated, this one became apparent.
| Description | Resource | Path | Location | Type |
| Discriminator column "DTYPE" cannot be resolved on table "equipment" | Equipment.java | /xxxxxx/src/main/java/com/xxxxxxx | line 85 | JPA Problem |
Its true that dtype is not on the table. I thought hibernate does not use a discriminator in this case. The application works fine in jboss as 6 with the same database definition.
@Entity
@Table(name="equipment")
@Inheritance(strategy=InheritanceType.JOINED)