长整型的差值: - Postgresql, Hibernate, Spring

2022-09-01 10:06:46

我想使用Spring MVC和Hibernate在PostgresQL中存储一个实体(字符串+图像)这是我的表。图像应该是oid的类型。

CREATE TABLE document
(
  name character varying(200),
  id serial NOT NULL,
  content oid,   // that should be the image
  CONSTRAINT document_pkey PRIMARY KEY (id )
)
WITH (
  OIDS=FALSE
);

下面是我要存储的实体。

    @Entity
    @Table(name = "document")
    public class Document {

        @Id
        @GeneratedValue(strategy = GenerationType.IDENTITY)
        @Column(name = "id")
        private Long id;

        @Column(name = "name")
        private String name;

        @Column(name="content")
            private Blob content;  //this is the image
//getters- setters

您可以看到变量“name”是一个字符串,而不是Long。仍然当我提交带有非数字值的表单时,它会抛出org.postgresql.util.PSQLException: Bad value for type long : x

这是形式:

<form:form method="post" action="save.html" commandName="document" enctype="multipart/form-data">
    <form:errors path="*" cssClass="error"/>
    <table>
    <tr>
        <td><form:label path="name">Name</form:label></td>
        <td><form:input path="name" /></td> 
    </tr>

     <tr>
        <td><form:label path="content">Document</form:label></td>
        <td><input type="file" name="file" id="file"></input></td>
    </tr>
    <tr>
        <td colspan="2">
            <input type="submit" value="Add Document"/>
        </td>
    </tr>
</table>  
</form:form>

如果我输入一个数值并提交,OK。但是任何非数值都会触发上述异常...我读到这可能是由于我没有正确使用OID引起的,但我不知道我应该怎么做才能消除此异常。实际上,我也不明白这个借口的名字。它说“型的不良价值”。但谁想打字长?变量“name”类型为 String!!!!

最后,这是控制器

@RequestMapping(value = "/save", method = RequestMethod.POST)
public String save(@ModelAttribute("document") Document document, @RequestParam("file") MultipartFile file) {

    try {
        Blob blob = Hibernate.createBlob(file.getInputStream());
        document.setContent(blob);
        documentDao.save(document);
    } catch (Exception e) {
        e.printStackTrace();
    }


    return "redirect:/index.html";
}

任何建议都是经过通报的。


答案 1

我遇到了类似的问题,但它与数据库中ID字段的顺序无关。

经过一些搜索,我发现指向一个事实,即除非另有说明,否则Hibernate中的Lob被视为OID。

这意味着Hibernate将尝试将Lob放入Long中,从而产生异常PSQLException:long类型的错误值

指定 Lob 是否被视为文本的方法是对字段进行批注

@Lob
@Type(type = "org.hibernate.type.TextType")

答案 2

当我创建表时,列“name”恰好是第一个。这不好。Id 必须是第一列。如果我改变列的顺序,它工作正常...


推荐