java.lang.Object;无法转换为 shoppingbasket.Product

java.lang.Object; cannot be cast to shoppingbasket.Product

我正在尝试检索产品列表及其相关优惠。遍历查询结果后,我希望能够使用产品 class 中的 getters/setters,但我知道它不起作用,因为查询未返回 Product.[=17= 的实例]

商品抢购功能:

public List<Product> getProducts() {
    factory = (new Configuration()).configure().buildSessionFactory();
    Session session = factory.getCurrentSession();

    session.beginTransaction();

    List<Product> products = new ArrayList<Product>();

    Query query = session.createQuery("from Product p INNER JOIN p.offers"); 
    //The castList is declared and explained at the bottom of listing
    List<Product> list =  query.list();

    Iterator<Product> iter = list.iterator();

    while (iter.hasNext()) {
        Product product = iter.next();
        System.out.println(product);
    }
}

要约的 Hibernate 映射:

<hibernate-mapping>
<class name="shoppingbasket.Offer" table="offers">
    <id name="offerID" type="integer" access="field">
        <column name="OfferID" />
        <generator class="assigned" />
    </id>
    <property name="offerDescription" type="java.lang.String" access="field">
        <column name="OfferDescription" length="60" not-null="true"/>
    </property>
    <property name="shortDescription" type="java.lang.String" access="field">
        <column name="ShortDescription" length="10" not-null="false"/>
    </property>
    <property name="TFTPOTGroup" type="java.lang.Integer" access="field">
        <column name="TFTPOTGroup" length="4" not-null="false" default="null"/>
    </property>
    <property name="discountPercentage" type="java.lang.Double" access="field">
        <column name="DiscountPercentage"  not-null="false" default="null"/>
    </property>
</class>

产品的 Hibernate 映射:

<hibernate-mapping>
<class name="shoppingbasket.Product" table="products">
    <id name="productID" type="integer" access="field">
        <column name="ProductID" />
        <generator class="assigned" />
    </id>
    <property name="offerID" type="java.lang.Integer" access="field">
        <column name="OfferID" />
    </property>
    <property name="productName" type="java.lang.String" access="field">
        <column name="ProductName" length="40" not-null="true"/>
    </property>
    <property name="unitPrice" type="java.math.BigDecimal" access="field">
        <column name="UnitPrice"/>
    </property>
    <one-to-one name="offers" class="shoppingbasket.Offer" />
</class>

产品class:

public class Product implements java.io.Serializable {
private Integer productID;
private Integer offerID;
private String productName;
private BigDecimal unitPrice;
private Offer offer;
public Integer getProductID() {
    return productID;
}
public void setProductID(Integer productID) {
    this.productID = productID;
}
public Integer getOfferID() {
    return this.offerID;
}
public void setOfferID(Integer offerID) {
    this.offerID = offerID;
}
public Offer getOffers() {
    return offer;
}
public void setOffers(Offer offer) {
    this.offer = offer;
}
//more getters/setters
}

报价class:

public class Offer
{
private Integer offerID;
private String offerDescription;
private String shortDescription;
private Integer TFTPOTGroup;
private Double discountPercentage;
public Integer getOfferID() {
    return offerID;
}
public void setOfferID(Integer offerID) {
    this.offerID = offerID;
}
//more getters/setters

}

任何帮助将不胜感激

#Potential Unnecessary Projections Data:

由于您没有在查询中指定 SELECT 子句并放置 显式连接 ,hibernate 将 return 每行 2 个对象(Product,Offers),其中由于 底层映射关联 ,Product 对象可能已经填充了 Offer 数据。 =12=]

尝试将 select 子句添加到查询中,看看它是否正确转换

Add SELECT p FROM ... to the query