0

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

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-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;
    }

}

我使用此命令创建了一个名为b_files

create table b_files(files_uploaded mediumblob, serial_number integer);

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

4

1 回答 1

0

你在错误的地方关闭课程。id并且property应该在</class>原始行中带有快捷方式的 ,而不是关闭类之前。

于 2013-06-06T08:13:30.000 回答