次のエラーが表示されます。
Exception [EclipseLink-43] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DescriptorException
Exception Description: Missing class for indicator field value [Component_Price_List] of type [class java.lang.String].
Descriptor: XMLDescriptor(com.celfocus.ufe.data.domains.productCatalog.PriceListItem --> [])
これは私のComponentPriceList.classです
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Component_Price_List")
@Entity
@Table(name="PC_COMPONENT_PRICE_LIST")
public class ComponentPriceList
extends PriceListItem
{
private static final long serialVersionUID = 1L;
}
そして、私の PriceListItem.class は次のとおりです。
@Entity
@DiscriminatorColumn(name="PRICE_LIST_ITEM")
@Inheritance(strategy = InheritanceType.JOINED)
@Table(name="PC_PRICE_LIST_ITEM")
public abstract class PriceListItem
extends LaunchEntity
{
private static final long serialVersionUID = 1L;
......
}
これがどのように起こるかわかりません。この問題を解決するにはどうすればよいですか? ありがとう