休眠。返回不完整的Object。映射问题

时间:2014-05-10 15:53:51

标签: java hibernate object hibernate-mapping

也许标题不是很明显,但我会尽可能地描述这个场景。 我有一个名为Hotel的类,我想从数据库中返回一个对象,但是有一个字段不在数据库中,我不知道如何处理这个因为我收到了错误。 我告诉你,这是酒店课程:

@Entity(name="Hotels")
public class Hotel {
    @Id @GeneratedValue
    private int id;
    @Column(name="name")
    private String name;
    @Column(name="category")
    private int category;
    @Column(name="base_price")
    private int base_price;
    @Column(name="region_id")
    private int region_id;
    @Column(name="adress")
    private String address;
    @Column(name="phone")
    private int phone;
    @Column(name="description")
    private String description;
    private Rate rate;

//SETTERS and GETTERS

public int getId() {
    return id;
}
public void setId(int id){
    this.id=id;
}
public String getName() {
    return name;
}

public void setName(String nombre) {
    this.name = nombre;
}
public int getBase_price() {
    return base_price;
}
public void setBase_price(int base_price) {
    this.base_price = base_price;
}
public int getRegion_id() {
    return region_id;
}
public void setRegion_id(int region_id) {
    this.region_id = region_id;
}
public int getCategory() {
    return category;
}
public void setCategory(int category) {
    this.category = category;
}
public String getDescription() {
    return description;
}
public void setDescription(String description) {
    this.description = description;
}
public int getPhone() {
    return phone;
}
public void setPhone(int phone) {
    this.phone = phone;
}
public String getAddress() {
    return address;
}
public void setAddress(String address) {
    this.address = address;
}
public Rate getRate() {
    return rate;
}
public void setRate(Rate rate) {
    this.rate = rate;
}

}

这是我的数据库结构:

mysql> describe Hotels;
+-------------+--------------+------+-----+---------+----------------+
| Field       | Type         | Null | Key | Default | Extra          |
+-------------+--------------+------+-----+---------+----------------+
| id          | int(11)      | NO   | PRI | NULL    | auto_increment |
| name        | varchar(255) | NO   |     | NULL    |                |
| category    | int(11)      | NO   |     | NULL    |                |
| base_price  | int(11)      | NO   |     | NULL    |                |
| region_id   | int(11)      | NO   |     | NULL    |                |
| adress      | varchar(255) | NO   |     | NULL    |                |
| phone       | int(11)      | NO   |     | NULL    |                |
| photo_id    | int(11)      | NO   |     | NULL    |                |
| description | varchar(255) | NO   |     | NULL    |                |
+-------------+--------------+------+-----+---------+----------------+

我想返回一个Hotel对象,其中包含从数据库中获取的这些字段:name,phone,address,base_price,category,description和region_id。 我不关心Rate,我想用Rate = null返回它。 这是我的功能,我遇到了问题:

public Hotel buscaHotel(int id) {

        Hotel nuevoHotel = new Hotel();

        SessionFactory sf = open();
        Session ss = sf.openSession();
        ss.beginTransaction();
        Query query = ss.createQuery("select u from Hotels u where id = :id ");
        query.setParameter("id", id);
        List<Hotel> list = query.list();
        if (list.size() != 0) {

            nuevoHotel = list.get(0);
            ss.getTransaction().commit();
            ss.close();
            return nuevoHotel;
        } else {
            ss.getTransaction().commit();
            ss.close();
            return nuevoHotel;

        }

    }

我得到的错误就是这个:

org.hibernate.MappingException: Could not determine type for: manager.Rate, at table: Hotels, for columns: [org.hibernate.mapping.Column(rate)]

以防万一,在我的hibernate.cfg.xml上我有:

<mapping class="manager.Hotel"></mapping>

1 个答案:

答案 0 :(得分:0)

Rate rate取消映射字段Hibernate,因此在序列化/反序列化数据库中的数据时,它不知道如何处理它。

在您的类和@ManyToOne类的hibernate.cfg.xml文件中添加相关关联(可能Rate)。

如果您没有准备好Rate类的当前映射,则标记为@Transient,因此Hibernate将忽略它。

@Transient
private Rate rate;