org.hibernate.InvalidMappingException:无法从资源hibernate.hbm.xml解析映射文档。我为什么要这样做?

时间:2013-06-06 07:53:12

标签: java hibernate java-ee hibernate-mapping pojo

在尝试将文本文件写入数据库时​​,我得到以下异常:

org.hibernate.InvalidMappingException: Could not parse mapping document 
from resource hibernate.hbm.xml

点击html提交按钮

<form method="post" enctype="multipart/form-data" action="FileHandler">
        <input type="file" name="file" /> <br />
        <input type="submit" value="submit" />
</form>

我不知道为什么我得到它的原因。以下是 hibernate映射文件:

    <hibernate-mapping>
      <class name="pojo.File" table="b_files"/>
        <id name="serial_number">
      <generator class="increment" />
        </id>
        <property name="file" />
    </hibernate-mapping>

以下是pojo package (映射类)中的类:

package pojo;

public class File {
    private byte file[] = new byte[5120];
    private int serial_number;

    public int getSerial_number() {
        return serial_number;
    }

    public void setSerial_number(int serial_number) {
        this.serial_number = serial_number;
    }

    public byte[] getFile() {
        return file;
    }

    public void setFile(byte[] file) {
        this.file = file;
    }

}

我使用this命令创建了一个名为b_files的表:

create table b_files(files_uploaded mediumblob, serial_number integer);

注意:我猜测,映射文件中名为“file”的属性存在问题。这样可以吗 ?因为我的netbeans IDE中没有提供'file'作为提示。所以我想这可能是问题所在。

1 个答案:

答案 0 :(得分:0)

你正在错误的地方上课。 idproperty应位于</class>之前,而不是在其原始行中带有快捷方式的close类。